blob: b3cc884385793fee859d7757d6525ccc8d12de25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
cmake_minimum_required(VERSION 3.5)
project(deps)
file(GLOB SOURCES "./src/*")
file(GLOB_RECURSE HEADERS "./include/*")
include_directories(./include/)
add_library(deps STATIC ${SOURCES} ${HEADERS})
file(GLOB OPTICK_SRC "./optick/*.cpp")
add_library(optick STATIC ${OPTICK_SRC})
|