summaryrefslogtreecommitdiffstats
path: root/external/CMakeLists.txt
blob: d370f1aa5279bf6fdc1c4c0b1a81f29a31b00c5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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})