- Added CMakeLists.txt for each dependency - Added dependencies/CMakeLists.txt for specifying relation between main lib and it's dependencies
15 lines
221 B
CMake
15 lines
221 B
CMake
cmake_minimum_required(VERSION 3.17)
|
|
|
|
project(SqRat)
|
|
|
|
file(GLOB_RECURSE SRC
|
|
"include/*.h"
|
|
)
|
|
|
|
add_library(SqRat INTERFACE)
|
|
target_sources(SqRat INTERFACE ${SRC})
|
|
|
|
target_include_directories(SqRat
|
|
INTERFACE
|
|
"include/"
|
|
) |