blocky/playground/CMakeLists.txt
2022-06-22 11:48:52 +09:00

31 lines
456 B
CMake

add_executable(playground)
target_compile_options(playground PRIVATE ${BLOCKY_CXX_FLAGS})
target_sources(playground
PRIVATE
app.hh
block.cc
encoder.cc
exporter.cc
extractor.cc
initiator.hh
input.cc
input.hh
input_gradient.cc
input_imgseq.cc
input_noise.cc
main.cc
player.cc
sensor.cc
)
target_link_libraries(playground
PRIVATE
liblocky
glew
glfw
imgui
implot
m
stb
)