diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2015-05-05 15:27:22 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2015-05-05 15:27:22 +0200 |
commit | 890ba303b28be816ff00f464b6f3a6b000b5e6e2 (patch) | |
tree | df4c72a5f1f72d37cba07b490e189d6da9b75e3e /pcilib/CMakeLists.txt | |
parent | 0ccd08c98b5d41927099a552dad379221e63cd89 (diff) | |
download | pcitool-890ba303b28be816ff00f464b6f3a6b000b5e6e2.tar.gz pcitool-890ba303b28be816ff00f464b6f3a6b000b5e6e2.tar.bz2 pcitool-890ba303b28be816ff00f464b6f3a6b000b5e6e2.tar.xz pcitool-890ba303b28be816ff00f464b6f3a6b000b5e6e2.zip |
Split bar manipulation and fifo operations in stand-alone source and publish kmem and bar headers
Diffstat (limited to 'pcilib/CMakeLists.txt')
-rw-r--r-- | pcilib/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pcilib/CMakeLists.txt b/pcilib/CMakeLists.txt index eb86762..bb0abfd 100644 --- a/pcilib/CMakeLists.txt +++ b/pcilib/CMakeLists.txt @@ -3,8 +3,8 @@ include_directories( ${CMAKE_SOURCE_DIR}/pcilib ) -set(HEADERS pcilib.h pci.h export.h model.h bank.h register.h kmem.h irq.h dma.h event.h plugin.h tools.h error.h debug.h version.h config.h) -add_library(pcilib SHARED pci.c export.c model.c bank.c register.c kmem.c irq.c dma.c event.c plugin.c tools.c error.c debug.c) +set(HEADERS pcilib.h pci.h export.h bar.h fifo.h model.h bank.h register.h kmem.h irq.h dma.h event.h plugin.h tools.h error.h debug.h version.h config.h) +add_library(pcilib SHARED pci.c export.c bar.c fifo.c model.c bank.c register.c kmem.c irq.c dma.c event.c plugin.c tools.c error.c debug.c) target_link_libraries(pcilib dma protocols ${CMAKE_THREAD_LIBS_INIT} ${UFODECODE_LIBRARIES} ${CMAKE_DL_LIBS}) add_dependencies(pcilib dma protocols) @@ -16,6 +16,6 @@ install(FILES pcilib.h DESTINATION include ) -install(FILES bank.h register.h dma.h event.h model.h error.h debug.h tools.h export.h version.h +install(FILES bar.h kmem.h bank.h register.h dma.h event.h model.h error.h debug.h tools.h export.h version.h DESTINATION include/pcilib ) |