mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-10 15:36:09 -06:00
14 lines
336 B
CMake
14 lines
336 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
|
|
project(cafTensor)
|
|
|
|
set(PROJECT_FILES cafTensor3.cpp cafTensor3.h cafTensor3.inl)
|
|
|
|
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})
|