From ae8f021ae4f36abc063af4c1a47514be170f902f Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Tue, 15 Oct 2019 10:38:20 -0300 Subject: Update CMakeLists.txt --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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}) -- cgit