mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -06:00
20 lines
298 B
CMake
20 lines
298 B
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
|
|
project (clipper)
|
|
|
|
set(project_source_files
|
|
clipper.cpp
|
|
)
|
|
|
|
add_library(${PROJECT_NAME}
|
|
STATIC
|
|
${project_source_files}
|
|
)
|
|
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
source_group("" FILES ${PROJECT_FILES})
|