-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
36 lines (28 loc) · 1.04 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
cmake_minimum_required(VERSION 3.16)
project(QuadTree LANGUAGES CXX)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
set(CMAKE_CXX_STANDARD 17) # Sets the version of C++ used in the project
include(FetchContent)
# Windows-specific configurations
FetchContent_Declare(SFML
GIT_REPOSITORY https://github.com/SFML/SFML.git
GIT_TAG 2.6.x)
FetchContent_MakeAvailable(SFML)
add_executable(QuadTree
main.cpp
src/cpp/Button.cpp
src/cpp/Common.cpp
src/cpp/Game.cpp
src/cpp/MainScreen.cpp
src/cpp/Particle.cpp
src/cpp/TextBox.cpp
)
target_link_libraries(QuadTree PRIVATE sfml-graphics)
target_compile_features(QuadTree PRIVATE cxx_std_17)
add_custom_command(
TARGET QuadTree
COMMENT "Copy OpenAL DLL"
PRE_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${SFML_SOURCE_DIR}/extlibs/bin/$<IF:$<EQUAL:${CMAKE_SIZEOF_VOID_P},8>,x64,x86>/openal32.dll $<TARGET_FILE_DIR:QuadTree>
VERBATIM)
install(TARGETS QuadTree)