summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2019-10-15 10:38:20 -0300
committerGitHub <noreply@github.com>2019-10-15 10:38:20 -0300
commitae8f021ae4f36abc063af4c1a47514be170f902f (patch)
treeb10c471a0168dc2abef64450981599c366a0b88c
parentf5c90a0cb3c8e586ba1e2112c866d4c803faeaf3 (diff)
downloadPSP.git-ae8f021ae4f36abc063af4c1a47514be170f902f.tar.gz
PSP.git-ae8f021ae4f36abc063af4c1a47514be170f902f.tar.xz
PSP.git-ae8f021ae4f36abc063af4c1a47514be170f902f.zip
Update CMakeLists.txt
-rw-r--r--CMakeLists.txt5
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})