mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
8 lines
139 B
CMake
8 lines
139 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
set(CMAKE_SUPPRESS_REGENERATION 1)
|
|
project(LIB1)
|
|
|
|
set(SOURCES lib1.cpp)
|
|
|
|
add_library(lib1 ${SOURCES})
|