mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
bc628c6b28
- Convert where necessary - Adjust type where reasonable - Use SYSTEM headers for gl.h, stb* and vulkan
13 lines
351 B
CMake
13 lines
351 B
CMake
|
|
set(SRCROOT ${PROJECT_SOURCE_DIR}/examples/window)
|
|
|
|
# all source files
|
|
set(SRC ${SRCROOT}/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/window) |