diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-10-15 23:42:02 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 23:42:02 -0300 |
commit | 216c7c5884707d1690fb681a9923f899961d0ccc (patch) | |
tree | b03eeeeb84648a5fdcb92477d29e555ed02e06e5 | |
parent | 29f549f7b810eeafe96e5886fc3ff0a900038361 (diff) | |
download | PSP.git-216c7c5884707d1690fb681a9923f899961d0ccc.tar.gz PSP.git-216c7c5884707d1690fb681a9923f899961d0ccc.tar.xz PSP.git-216c7c5884707d1690fb681a9923f899961d0ccc.zip |
Update CMakeLists.txt
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 85b9bbc..58d4993 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,5 +34,10 @@ file(GLOB PSP_SRC "Project/wxMathPlot/*.cpp" ) +DBG_MSG("wxWidgets_INCLUDE_DIRS : ${wxWidgets_INCLUDE_DIRS}") +DBG_MSG("wxWidgets_LIBRARY_DIRS : ${wxWidgets_LIBRARY_DIRS}") +DBG_MSG("wxWidgets_LIBRARIES : ${wxWidgets_LIBRARIES}") +DBG_MSG("wxWidgets_CXX_FLAGS : ${wxWidgets_CXX_FLAGS}") + add_executable(${PROJECT_NAME} WIN32 ${PSP_SRC}) -target_link_libraries(${PROJECT_NAME} ${wxWidgets_LIBRARIES}) +target_link_libraries(${PROJECT_NAME} ${wxWidgets_LIBRARIES} wx-config --libs std,adv,ribbon,aui,propgrid,richtext,stc,gl) |