9 lines
163 B
Text
9 lines
163 B
Text
|
cmake_minimum_required(VERSION 3.16)
|
||
|
project(Common)
|
||
|
|
||
|
add_library(common INTERFACE)
|
||
|
|
||
|
target_include_directories(common INTERFACE
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
)
|