CMake: add lib skeleton and google-tests

This commit is contained in:
2026-02-28 01:56:55 +01:00
parent 114f4ba834
commit 35b7645314
7 changed files with 87 additions and 0 deletions

12
CMakeLists.txt Normal file
View 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()