diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-10-15 10:38:20 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 10:38:20 -0300 |
commit | ae8f021ae4f36abc063af4c1a47514be170f902f (patch) | |
tree | b10c471a0168dc2abef64450981599c366a0b88c | |
parent | f5c90a0cb3c8e586ba1e2112c866d4c803faeaf3 (diff) | |
download | PSP.git-ae8f021ae4f36abc063af4c1a47514be170f902f.tar.gz PSP.git-ae8f021ae4f36abc063af4c1a47514be170f902f.tar.xz PSP.git-ae8f021ae4f36abc063af4c1a47514be170f902f.zip |
Update CMakeLists.txt
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 11d90d0..f73dccc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,10 @@ else() include(${wxWidgets_USE_FILE}) endif() message(STATUS "CMAKE_BUILD_TYPE:${CMAKE_BUILD_TYPE}") -file(GLOB helloworld_SRC +file(GLOB PSP_SRC "*.h" "*.cpp" ) + +add_executable(${PROJECT_NAME} WIN32 ${PSP_SRC}) +target_link_libraries(${PROJECT_NAME} ${wxWidgets_LIBRARIES}) |