Skip to content

Commit

Permalink
Merge pull request #54 from kubaroth/master
Browse files Browse the repository at this point in the history
CMake added -DCMAKE_INSTALL_PREFIX option
  • Loading branch information
dougbinks committed Jan 14, 2015
2 parents d532fcd + 45cae2e commit e5b244e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Aurora/CMakeLists.txt
Expand Up @@ -33,6 +33,18 @@ if(UNIX)
target_link_libraries(RuntimeObjectSystem dl) target_link_libraries(RuntimeObjectSystem dl)
endif() endif()


#
# Make Install
#
install(DIRECTORY Common/ DESTINATION ${CMAKE_INSTALL_PREFIX}/include/Common
FILES_MATCHING PATTERN "*.inl")
install(DIRECTORY RuntimeObjectSystem/ DESTINATION ${CMAKE_INSTALL_PREFIX}/include/RuntimeObjectSystem
FILES_MATCHING PATTERN "*.h")
install(DIRECTORY RuntimeCompiler/ DESTINATION ${CMAKE_INSTALL_PREFIX}/include/RuntimeCompiler
FILES_MATCHING PATTERN "*.h")
install(TARGETS RuntimeObjectSystem RuntimeCompiler
DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/)

if(BUILD_EXAMPLES) if(BUILD_EXAMPLES)


# #
Expand Down

0 comments on commit e5b244e

Please sign in to comment.