1
0
mirror of https://github.com/SFML/SFML.git synced 2025-03-14 01:40:05 +08:00

11 lines
290 B
CMake
Raw Normal View History

# all source files
set(SRC Window.cpp)
# define the window target
sfml_add_example(window GUI_APP
SOURCES ${SRC}
DEPENDS SFML::Window)
# external dependency headers
2022-10-08 22:31:27 -06:00
target_include_directories(window SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/examples/include)