14 lines
244 B
CMake
14 lines
244 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(hqueue CXX)
|
|
|
|
|
|
|
|
|
|
add_library(hqueue src/mypkg.cpp)
|
|
target_include_directories(hqueue PUBLIC include)
|
|
|
|
|
|
|
|
set_target_properties(hqueue PROPERTIES PUBLIC_HEADER "include/mypkg.h")
|
|
install(TARGETS mypkg)
|