Updated dependencies structure:

- Added CMakeLists.txt for each dependency
- Added dependencies/CMakeLists.txt for specifying relation between main lib and it's dependencies
This commit is contained in:
Patrix
2022-07-07 21:11:24 +02:00
parent 3a458ec9aa
commit eab3d7c831
4 changed files with 40 additions and 4 deletions

16
dependencies/squirrel/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.17)
project(Squirrel)
file(GLOB_RECURSE SRC
"include/*.h"
)
add_library(Squirrel INTERFACE)
target_sources(Squirrel INTERFACE ${SRC})
target_include_directories(Squirrel
INTERFACE
"./"
"include/"
)