peerplays_migrated/libraries/time/CMakeLists.txt

19 lines
455 B
CMake
Raw Normal View History

2015-06-08 15:50:35 +00:00
file(GLOB HEADERS "include/graphene/time/*.hpp")
add_library( graphene_time
time.cpp
)
target_link_libraries( graphene_time fc )
target_include_directories( graphene_time
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
install( TARGETS
graphene_time
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
2016-03-17 22:08:27 +00:00
install( FILES ${HEADERS} DESTINATION "include/graphene/time" )