mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -06:00
14 lines
168 B
CMake
14 lines
168 B
CMake
|
cmake_minimum_required (VERSION 2.8)
|
||
|
|
||
|
project (clipper)
|
||
|
|
||
|
set(project_source_files
|
||
|
clipper.cpp
|
||
|
)
|
||
|
|
||
|
add_library(${PROJECT_NAME}
|
||
|
STATIC
|
||
|
${project_source_files}
|
||
|
)
|
||
|
|