Files
ggwave/examples/ggwave-gui/CMakeLists.txt
2020-11-29 17:45:20 +02:00

15 lines
266 B
CMake

add_executable(ggwave-gui main.cpp)
target_include_directories(ggwave-gui PRIVATE
..
${SDL2_INCLUDE_DIRS}
)
target_link_libraries(ggwave-gui PRIVATE
ggwave
ggwave-common
ggwave-common-sdl2
imgui-sdl2
${CMAKE_THREAD_LIBS_INIT}
)