diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-07-12 17:40:22 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-07-12 17:40:22 +0000 |
| commit | 775dc8a9c0c83f7a2f776e97f5b90385c759535a (patch) | |
| tree | 305bc72e0917f9dd52da3de6b3c81185cd18aaed /Source/Core/DebuggerWX/src/SConscript | |
| parent | a3be5d89ae21b1c158266c61e312c2b7969c9082 (diff) | |
Initial megacommit.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/src/SConscript')
| -rw-r--r-- | Source/Core/DebuggerWX/src/SConscript | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/src/SConscript b/Source/Core/DebuggerWX/src/SConscript new file mode 100644 index 0000000000..6386758b1c --- /dev/null +++ b/Source/Core/DebuggerWX/src/SConscript @@ -0,0 +1,13 @@ +Import('env') + +files = ["LogWindow.cpp", + "CodeWindow.cpp", + "CodeView.cpp", + "Debugger.cpp", + "RegisterWindow.cpp", + "RegisterView.cpp", + ] +wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags --debug` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP", + LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs --debug`") + +wxenv.StaticLibrary("debwx", files, LIBS = ["common"]) |
