ResInsight/Fwk/AppFwk/cafHexInterpolator/CMakeLists.txt
Jacob Støren cd6860b70f caf::HexInterpolator: Add a method to access vertex weights
Add a Cmake file to make it a library
2020-01-17 13:24:24 +01:00

22 lines
345 B
CMake

cmake_minimum_required (VERSION 2.8.12)
project (cafHexInterpolator)
set( PROJECT_FILES
cafHexInterpolator.h
)
add_library( ${PROJECT_NAME}
${PROJECT_FILES}
)
target_include_directories(${PROJECT_NAME}
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
)
target_link_libraries( ${PROJECT_NAME} LibCore )
source_group("" FILES ${PROJECT_FILES})