CMakeLists.txt 403 B

1234567891011121314
  1. # Define the current source locations
  2. SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/blackborder)
  3. SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/blackborder)
  4. FILE ( GLOB Blackborder_SOURCES "${CURRENT_HEADER_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.cpp" )
  5. add_library(blackborder ${Blackborder_SOURCES} )
  6. target_link_libraries(blackborder
  7. hyperion-utils
  8. hyperion
  9. )