17 lines
205 B
CMake
17 lines
205 B
CMake
|
|
add_library(
|
|
NostalgiaCommon
|
|
bounds.cpp
|
|
point.cpp
|
|
)
|
|
|
|
#install(TARGETS NostalgiaCommon DESTINATION lib)
|
|
install(
|
|
FILES
|
|
bounds.hpp
|
|
common.hpp
|
|
point.hpp
|
|
DESTINATION
|
|
include/nostalgia/common
|
|
)
|