add missing CMakeList for libarchopenfpga
This commit is contained in:
parent
48ecb6e48b
commit
5dea648be6
|
@ -0,0 +1,36 @@
|
|||
cmake_minimum_required(VERSION 3.9)
|
||||
|
||||
project("libarchopenfpga")
|
||||
|
||||
file(GLOB_RECURSE EXEC_SOURCES test/main.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(libarchopenfpga STATIC
|
||||
${LIB_HEADERS}
|
||||
${LIB_SOURCES})
|
||||
target_include_directories(libarchopenfpga PUBLIC ${LIB_INCLUDE_DIRS})
|
||||
set_target_properties(libarchopenfpga PROPERTIES PREFIX "") #Avoid extra 'lib' prefix
|
||||
|
||||
#Specify link-time dependancies
|
||||
target_link_libraries(libarchopenfpga
|
||||
libvtrutil
|
||||
libpugixml
|
||||
libpugiutil)
|
||||
|
||||
#Create the test executable
|
||||
add_executable(read_arch_openfpga ${EXEC_SOURCES})
|
||||
target_link_libraries(read_arch_openfpga libarchopenfpga)
|
||||
|
||||
#Supress IPO link warnings if IPO is enabled
|
||||
get_target_property(READ_ARCH_USES_IPO read_arch_openfpga INTERPROCEDURAL_OPTIMIZATION)
|
||||
if (READ_ARCH_USES_IPO)
|
||||
set_target_properties(read_arch_openfpga PROPERTIES LINK_FLAGS ${IPO_LINK_WARN_SUPRESS_FLAGS})
|
||||
endif()
|
||||
|
||||
install(TARGETS libarchopenfpga read_arch_openfpga DESTINATION bin)
|
Loading…
Reference in New Issue