diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-10-15 22:05:23 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 22:05:23 -0300 |
commit | 957f95ac166b86760e7563cea77c872d85019430 (patch) | |
tree | 28a18cee803e0edaecf3b30dff4299a62254e9c6 | |
parent | 03891a7bf73c0eeee440ad4354da4aeb3f634795 (diff) | |
download | PSP.git-957f95ac166b86760e7563cea77c872d85019430.tar.gz PSP.git-957f95ac166b86760e7563cea77c872d85019430.tar.xz PSP.git-957f95ac166b86760e7563cea77c872d85019430.zip |
Update CMakeLists.txt
-rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ea603aa..fca4937 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,6 @@ SET(PROJECT_NAME "PSP-UFU") project(${PROJECT_NAME}) set(default_build_type "Release") -aux_source_directory("Project/" PSP_SRC) - set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -23,8 +21,20 @@ endif() message(STATUS "CMAKE_BUILD_TYPE:${CMAKE_BUILD_TYPE}") file(GLOB PSP_SRC - "*.h" - "*.cpp" + "Project/*.h" + "Project/*.cpp" + "Project/*.cpp" + "Project/artProvider/*.cpp" + "Project/artProvider/*.h" + "Project/fparser/*.cc" + "Project/fparser/*.hh" + "Project/fparser/mpfr/*.cc" + "Project/fparser/mpfr/*.hh" + "Project/fparser/extrasrc/*.inc" + "Project/fparser/extrasrc/*.hh" + "Project/rapidXML/*.hpp" + "Project/wxMathPlot/*.cpp" + "Project/wxMathPlot/*.h" ) add_executable(${PROJECT_NAME} WIN32 ${PSP_SRC}) |