CMake: add lib skeleton and google-tests
This commit is contained in:
12
CMakeLists.txt
Normal file
12
CMakeLists.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
cmake_minimum_required(VERSION 4.1)
|
||||
|
||||
project(PasadaSuperProject)
|
||||
|
||||
option(PASADA_BUILD_TESTS "Build Google Tests" ON)
|
||||
|
||||
add_subdirectory(pasada-lib)
|
||||
|
||||
if(PASADA_BUILD_TESTS)
|
||||
enable_testing()
|
||||
add_subdirectory(google-tests)
|
||||
endif()
|
||||
Reference in New Issue
Block a user