project-aster/samples/00_util/CMakeLists.txt

18 lines
453 B
CMake

# CMakeList.txt ; CMake project for Triangle
cmake_minimum_required(VERSION 3.13)
find_package(imgui CONFIG REQUIRED)
add_library(util_helper STATIC
"helpers.h"
"helpers.cpp"
"frame.cpp"
"frame.h"
"gui.cpp"
"gui.h")
target_link_libraries(util_helper PRIVATE aster_core)
target_link_libraries(util_helper PRIVATE imgui::imgui)
target_include_directories(util_helper PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})