diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-10-15 18:44:36 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 18:44:36 -0300 |
commit | ca2158d3f344853739a51051bf0ef3d26390e3fc (patch) | |
tree | 78e19cf903f930ccbc387536e0d1bfd0198d4982 | |
parent | ee9b492b69dc181f98c285d716ddb22c2d5075cb (diff) | |
download | PSP.git-ca2158d3f344853739a51051bf0ef3d26390e3fc.tar.gz PSP.git-ca2158d3f344853739a51051bf0ef3d26390e3fc.tar.xz PSP.git-ca2158d3f344853739a51051bf0ef3d26390e3fc.zip |
Update CMakeLists.txt
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6dfda9d..420893c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,8 @@ SET(PROJECT_NAME "PSP-UFU") project(${PROJECT_NAME}) set(default_build_type "Release") +aux_source_directory("Project/" SRC_LIST) + set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -21,8 +23,8 @@ endif() message(STATUS "CMAKE_BUILD_TYPE:${CMAKE_BUILD_TYPE}") file(GLOB PSP_SRC - "Project/*.h" - "Project/*.cpp" + "*.h" + "*.cpp" ) add_executable(${PROJECT_NAME} WIN32 ${PSP_SRC}) |