make base as library

This commit is contained in:
Jean-Philippe Bruyère 2017-08-17 20:40:52 +02:00
parent ed1134d6d2
commit 977f0318b7
2 changed files with 14 additions and 8 deletions

4
base/CMakeLists.txt Normal file
View file

@ -0,0 +1,4 @@
file(GLOB BASE_SRC *.cpp)
file(GLOB BASE_HEADERS *.hpp)
add_library(base SHARED ${BASE_SRC})