diff options
author | zilio nicolas <nicolas.zilio@kit.edu> | 2015-08-27 11:09:21 +0200 |
---|---|---|
committer | zilio nicolas <nicolas.zilio@kit.edu> | 2015-08-27 11:09:21 +0200 |
commit | d3678e0fcb489eba625347d1209bd8a179153ae0 (patch) | |
tree | ec3b968b1290ef2184c1eceb6ed6d9e1dbefc23d /pcilib/CMakeLists.txt | |
parent | 1e5f0b6d5e02c0dc11bedefa92fc3c5bb406845a (diff) | |
download | pcitool-d3678e0fcb489eba625347d1209bd8a179153ae0.tar.gz pcitool-d3678e0fcb489eba625347d1209bd8a179153ae0.tar.bz2 pcitool-d3678e0fcb489eba625347d1209bd8a179153ae0.tar.xz pcitool-d3678e0fcb489eba625347d1209bd8a179153ae0.zip |
put xml nodes pointers for banks and registers in pcilib_t, compil ok
Diffstat (limited to 'pcilib/CMakeLists.txt')
-rw-r--r-- | pcilib/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pcilib/CMakeLists.txt b/pcilib/CMakeLists.txt index 774ebe9..428f898 100644 --- a/pcilib/CMakeLists.txt +++ b/pcilib/CMakeLists.txt @@ -5,8 +5,10 @@ include_directories( ${CMAKE_SOURCE_DIR}/pcilib ) -set(HEADERS pcilib.h pci.h export.h bar.h fifo.h model.h bank.h register.h kmem.h irq.h locking.h lock.h dma.h event.h plugin.h tools.h error.h debug.h env.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 locking.c lock.c dma.c event.c plugin.c tools.c error.c debug.c env.c ) +set(HEADERS pcilib.h pci.h export.h bar.h fifo.h model.h bank.h register.h +kmem.h irq.h locking.h lock.h dma.h event.h plugin.h tools.h error.h debug.h +env.h version.h config.h xml.h) +add_library(pcilib SHARED pci.c export.c bar.c fifo.c model.c bank.c register.c kmem.c irq.c locking.c lock.c dma.c event.c plugin.c tools.c error.c debug.c env.c xml.c) target_link_libraries(pcilib dma protocols ${CMAKE_THREAD_LIBS_INIT} ${UFODECODE_LIBRARIES} ${CMAKE_DL_LIBS} ${EXTRA_SYSTEM_LIBS} ${XMLLIB_LIBRARIES} ${PYTHON_LIBRARIES}) add_dependencies(pcilib dma protocols) |