mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
11 lines
290 B
CMake
11 lines
290 B
CMake
# 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
|
|
target_include_directories(window SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/examples/include)
|