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

9 lines
268 B
CMake

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