10 lines
309 B
CMake
10 lines
309 B
CMake
INCLUDE_DIRECTORIES(${CHAMS_SOURCE_DIR}/agds)
|
|
|
|
SET ( includes GdsLibrary.h GdsStructure.h GdsElement.h GdsRectangle.h )
|
|
SET ( cpps GdsLibrary.cpp GdsStructure.cpp GdsRectangle.cpp )
|
|
|
|
ADD_LIBRARY(agds ${cpps})
|
|
INSTALL(TARGETS agds DESTINATION /lib)
|
|
|
|
INSTALL(FILES ${includes} DESTINATION /include/io/agds)
|