Files
CPP/ctest/CMakeLists.txt
2025-08-14 12:47:10 -04:00

12 lines
289 B
CMake

cmake_minimum_required(VERSION 3.10.0)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/home/pi/CPP")
project(tester VERSION 0.1.0 LANGUAGES C CXX)
add_executable(tester main.cpp)
add_subdirectory(/home/pi/CPP/common /home/pi/CPP/common/build)
target_link_libraries(tester PRIVATE common)