Files
ggwave/examples/ggwave-gui/CMakeLists.txt
2020-12-12 17:25:55 +02:00

15 lines
277 B
CMake

add_executable(ggwave-gui main.cpp common.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}
)