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

13 lines
318 B
CMake

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