mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
10 lines
210 B
CMake
10 lines
210 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
set(CMAKE_SUPPRESS_REGENERATION 1)
|
|
project(VSEXTERNAL_LIB2)
|
|
|
|
include_directories(${VSEXTERNAL_LIB2_SOURCE_DIR}/../Lib1)
|
|
|
|
set(SOURCES lib2.cpp)
|
|
|
|
add_library(lib2 ${SOURCES})
|