mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
9 lines
213 B
CMake
9 lines
213 B
CMake
# all source files
|
|
set(SRC Shader.cpp)
|
|
|
|
# define the shader target
|
|
sfml_add_example(shader GUI_APP
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Graphics
|
|
RESOURCES_DIR resources)
|