playground/instrument/target/CMakeLists.txt

9 lines
193 B
CMake
Raw Normal View History

2024-10-10 19:43:42 -04:00
cmake_minimum_required(VERSION 3.5)
project(target)
file(GLOB SOURCES "src/*.cpp")
add_library(${PROJECT_NAME} SHARED ${SOURCES})
target_include_directories(${PROJECT_NAME}
PUBLIC
include)