diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-08-05 16:22:06 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-08-05 16:22:06 +0200 |
commit | 4944805e15b9de3fb22b63b5b5041f3ffdc8ab70 (patch) | |
tree | 41b3e8df8786768b92aad0af08f12970bad6b824 /k8055gui | |
parent | ab49c115bdeaa1f2bdc07318560ffa90890ab356 (diff) | |
download | k8055-4944805e15b9de3fb22b63b5b5041f3ffdc8ab70.zip k8055-4944805e15b9de3fb22b63b5b5041f3ffdc8ab70.tar.gz |
fix cmake so that library symlinks are genereted
Diffstat (limited to 'k8055gui')
-rw-r--r-- | k8055gui/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k8055gui/CMakeLists.txt b/k8055gui/CMakeLists.txt index 736080b..86cfdb4 100644 --- a/k8055gui/CMakeLists.txt +++ b/k8055gui/CMakeLists.txt @@ -2,7 +2,7 @@ ADD_EXECUTABLE(k8055gui WIN32 MACOSX_BUNDLE MyApp.cpp MyFrame.cpp ) TARGET_LINK_LIBRARIES(k8055gui - k8055++-${VERSION} + k8055++ ${wxWidgets_LIBRARIES} ) @@ -13,7 +13,7 @@ INCLUDE_DIRECTORIES( # ${wxWidgets_INCLUDE_DIRS} ) -ADD_DEPENDENCIES(k8055gui k8055++-${VERSION}) +ADD_DEPENDENCIES(k8055gui k8055++) INSTALL(TARGETS k8055gui RUNTIME DESTINATION bin BUNDLE DESTINATION bin ) |