18 lines
244 B
CMake
18 lines
244 B
CMake
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
add_library(
|
|
NostalgiaCommon
|
|
bounds.cpp
|
|
point.cpp
|
|
)
|
|
|
|
#install(TARGETS NostalgiaCommon DESTINATION lib)
|
|
install(
|
|
FILES
|
|
bounds.hpp
|
|
common.hpp
|
|
point.hpp
|
|
DESTINATION
|
|
include/nostalgia/common
|
|
)
|