mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
24 lines
359 B
CMake
24 lines
359 B
CMake
cmake_minimum_required (VERSION 2.8.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})
|