37 lines
1.2 KiB
CMake
37 lines
1.2 KiB
CMake
cmake_minimum_required(VERSION 3.9)
|
|
|
|
project("libbusgroup")
|
|
|
|
file(GLOB_RECURSE EXEC_SOURCES test/*.cpp)
|
|
file(GLOB_RECURSE LIB_SOURCES src/*.cpp)
|
|
file(GLOB_RECURSE LIB_HEADERS src/*.h)
|
|
files_to_dirs(LIB_HEADERS LIB_INCLUDE_DIRS)
|
|
|
|
#Remove test executable from library
|
|
list(REMOVE_ITEM LIB_SOURCES ${EXEC_SOURCES})
|
|
|
|
#Create the library
|
|
add_library(libbusgroup STATIC
|
|
${LIB_HEADERS}
|
|
${LIB_SOURCES})
|
|
target_include_directories(libbusgroup PUBLIC ${LIB_INCLUDE_DIRS})
|
|
set_target_properties(libbusgroup PROPERTIES PREFIX "") #Avoid extra 'lib' prefix
|
|
|
|
#Specify link-time dependancies
|
|
target_link_libraries(libbusgroup
|
|
libopenfpgautil
|
|
libarchopenfpga
|
|
libvtrutil
|
|
libpugiutil)
|
|
|
|
#Create the test executable
|
|
foreach(testsourcefile ${EXEC_SOURCES})
|
|
# Use a simple string replace, to cut off .cpp.
|
|
get_filename_component(testname ${testsourcefile} NAME_WE)
|
|
add_executable(${testname} ${testsourcefile})
|
|
# Make sure the library is linked to each test executable
|
|
target_link_libraries(${testname} libbusgroup)
|
|
endforeach(testsourcefile ${EXEC_SOURCES})
|
|
|
|
install(TARGETS libbusgroup DESTINATION bin)
|