-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
43 lines (34 loc) · 1.02 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
37
38
39
40
41
42
43
cmake_minimum_required(VERSION 3.16)
project(sfcg LANGUAGES CXX)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
option(BUILD_SFCG_EXAMPLE "Build example" ON)
include(FetchContent)
FetchContent_Declare(SFML
GIT_REPOSITORY https://github.com/SFML/SFML.git
GIT_TAG 2.6.x)
FetchContent_MakeAvailable(SFML)
set(SOURCES
src/Init.cpp
src/Shape.cpp
src/RenderTarget.cpp
src/RectangleShape.cpp
src/GeometryCache.cpp
src/GLCheck.cpp
src/Shader.cpp
src/VertexBuffer.cpp
src/CircleShape.cpp
src/Sprite.cpp
src/Text.cpp
src/RenderWindow.cpp
src/ConvexShape.cpp
)
add_library(sfcg STATIC ${SOURCES})
target_link_libraries(sfcg PRIVATE sfml-system sfml-window sfml-graphics)
target_compile_features(sfcg PRIVATE cxx_std_17)
target_include_directories(sfcg PRIVATE ./include)
target_compile_definitions(sfcg PRIVATE GL_SILENCE_DEPRECATION)
if(BUILD_SFCG_EXAMPLE)
add_subdirectory(example)
endif()
install(TARGETS sfcg)