diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-02-20 00:46:17 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-02-20 00:46:17 +0100 |
commit | beaeb2c95856bb89f9aa4ac7b256d1526f60cde9 (patch) | |
tree | 62b173e64ef266d8952bc8f454cca1597a723134 /k8055gui/CMakeLists.txt | |
parent | 876d6f498bbf358a23b47edaf8b0d967724b1b94 (diff) | |
download | k8055-beaeb2c95856bb89f9aa4ac7b256d1526f60cde9.zip k8055-beaeb2c95856bb89f9aa4ac7b256d1526f60cde9.tar.gz |
add k8055gui
Diffstat (limited to 'k8055gui/CMakeLists.txt')
-rw-r--r-- | k8055gui/CMakeLists.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/k8055gui/CMakeLists.txt b/k8055gui/CMakeLists.txt new file mode 100644 index 0000000..e641518 --- /dev/null +++ b/k8055gui/CMakeLists.txt @@ -0,0 +1,19 @@ + +ADD_EXECUTABLE(k8055gui WIN32 MACOSX_BUNDLE MyApp.cpp MyFrame.cpp ) + +TARGET_LINK_LIBRARIES(k8055gui + k8055-${VERSION} + ${wxWidgets_LIBRARIES} +) + +INCLUDE(${wxWidgets_USE_FILE}) + +INCLUDE_DIRECTORIES( + ${CMAKE_SOURCE_DIR} + # ${wxWidgets_INCLUDE_DIRS} +) + +ADD_DEPENDENCIES(k8055gui k8055-${VERSION}) + +INSTALL(TARGETS k8055gui RUNTIME DESTINATION bin BUNDLE DESTINATION bin ) + |