This commit is contained in:
AdmiralEmser
2022-10-02 23:43:02 +02:00
parent 2335d6ebd3
commit 036e84d2c1
10 changed files with 18 additions and 18 deletions
+9
View File
@@ -0,0 +1,9 @@
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
#
cmake_minimum_required (VERSION 3.8)
project ("FC-Chess")
# Include sub-projects.
add_subdirectory ("FC-Chess")
+9 -5
View File
@@ -1,9 +1,13 @@
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
# CMakeList.txt : CMake project for FC-Chess, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
project ("FC-Chess")
# Add source to this project's executable.
add_executable (FC-Chess "main.cpp" "fc-chess.cpp" "graphics.cpp")
# Include sub-projects.
add_subdirectory ("FC-Chess")
if (CMAKE_VERSION VERSION_GREATER 3.12)
set_property(TARGET FC-Chess PROPERTY CXX_STANDARD 20)
endif()
# TODO: Add tests and install targets if needed.
-13
View File
@@ -1,13 +0,0 @@
# CMakeList.txt : CMake project for FC-Chess, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
# Add source to this project's executable.
add_executable (FC-Chess "main.cpp" "fc-chess.cpp" "graphics.cpp")
if (CMAKE_VERSION VERSION_GREATER 3.12)
set_property(TARGET FC-Chess PROPERTY CXX_STANDARD 20)
endif()
# TODO: Add tests and install targets if needed.
View File