Commit 25fe3e1b01d727c5aa1366e3d2fd5971821e5c1d
1 parent
72e03f96
Exists in
master
and in
5 other branches
Iniciando testes para implementação de módulo python.
Showing
2 changed files
with
58 additions
and
0 deletions
Show diff stats
.gitignore
@@ -7,6 +7,9 @@ | @@ -7,6 +7,9 @@ | ||
7 | *.nsi | 7 | *.nsi |
8 | *.exe | 8 | *.exe |
9 | *.tmp | 9 | *.tmp |
10 | +*.layout | ||
11 | +*.bak | ||
12 | +*.depend | ||
10 | ChangeLog* | 13 | ChangeLog* |
11 | Makefile | 14 | Makefile |
12 | aclocal.m4 | 15 | aclocal.m4 |
@@ -33,4 +36,6 @@ src/pw3270/pw3270-logo.png | @@ -33,4 +36,6 @@ src/pw3270/pw3270-logo.png | ||
33 | src/pw3270/pw3270.png | 36 | src/pw3270/pw3270.png |
34 | src/pw3270/v3270/marshal.c | 37 | src/pw3270/v3270/marshal.c |
35 | src/pw3270/v3270/marshal.h | 38 | src/pw3270/v3270/marshal.h |
39 | +src/plugins/dbus3270/dbus-glue.h | ||
40 | + | ||
36 | 41 |
@@ -0,0 +1,53 @@ | @@ -0,0 +1,53 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | ||
2 | +<CodeBlocks_project_file> | ||
3 | + <FileVersion major="1" minor="6" /> | ||
4 | + <Project> | ||
5 | + <Option title="Python bindings for pw3270" /> | ||
6 | + <Option pch_mode="2" /> | ||
7 | + <Option compiler="gcc" /> | ||
8 | + <Build> | ||
9 | + <Target title="Debug"> | ||
10 | + <Option output=".bin/Debug/py3270" imp_lib="$(TARGET_OUTPUT_DIR)$(TARGET_OUTPUT_BASENAME).a" def_file="$(TARGET_OUTPUT_DIR)$(TARGET_OUTPUT_BASENAME).def" prefix_auto="1" extension_auto="1" /> | ||
11 | + <Option object_output=".obj/Debug/" /> | ||
12 | + <Option type="3" /> | ||
13 | + <Option compiler="gcc" /> | ||
14 | + <Compiler> | ||
15 | + <Add option="-g" /> | ||
16 | + <Add option="-DDEBUG=1" /> | ||
17 | + <Add directory="../include" /> | ||
18 | + </Compiler> | ||
19 | + <Linker> | ||
20 | + <Add directory="../../.bin/Debug/lib" /> | ||
21 | + </Linker> | ||
22 | + </Target> | ||
23 | + <Target title="Release"> | ||
24 | + <Option output=".bin/Release/py3270" imp_lib="$(TARGET_OUTPUT_DIR)$(TARGET_OUTPUT_BASENAME).a" def_file="$(TARGET_OUTPUT_DIR)$(TARGET_OUTPUT_BASENAME).def" prefix_auto="1" extension_auto="1" /> | ||
25 | + <Option object_output=".obj/Release/" /> | ||
26 | + <Option type="3" /> | ||
27 | + <Option compiler="gcc" /> | ||
28 | + <Compiler> | ||
29 | + <Add option="-O2" /> | ||
30 | + <Add option="-DNDEBUG=1" /> | ||
31 | + </Compiler> | ||
32 | + <Linker> | ||
33 | + <Add option="-s" /> | ||
34 | + </Linker> | ||
35 | + </Target> | ||
36 | + </Build> | ||
37 | + <Compiler> | ||
38 | + <Add option="-Wall" /> | ||
39 | + <Add option="-fPIC" /> | ||
40 | + <Add option="`pkg-config --cflags dbus-1`" /> | ||
41 | + </Compiler> | ||
42 | + <Unit filename="../classlib/exception.cc" /> | ||
43 | + <Unit filename="../classlib/local.cc" /> | ||
44 | + <Unit filename="../classlib/module.cc" /> | ||
45 | + <Unit filename="../classlib/remote.cc" /> | ||
46 | + <Unit filename="../classlib/session.cc" /> | ||
47 | + <Extensions> | ||
48 | + <code_completion /> | ||
49 | + <envvars /> | ||
50 | + <debugger /> | ||
51 | + </Extensions> | ||
52 | + </Project> | ||
53 | +</CodeBlocks_project_file> |