diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2015-04-30 19:51:49 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2015-04-30 19:51:49 +0200 |
commit | 8da61292f595c5e700a4fef981b0e0d07910b4b2 (patch) | |
tree | a012e6312d95d50c3e8bd58bc972dbccdd3bd0bf /pcilib/CMakeLists.txt | |
parent | a740fcee56bd456a759e03526df476e1791fb2bd (diff) | |
download | pcitool-8da61292f595c5e700a4fef981b0e0d07910b4b2.tar.gz pcitool-8da61292f595c5e700a4fef981b0e0d07910b4b2.tar.bz2 pcitool-8da61292f595c5e700a4fef981b0e0d07910b4b2.tar.xz pcitool-8da61292f595c5e700a4fef981b0e0d07910b4b2.zip |
Provide an interface for logging debug messages
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 70bd5f0..b1b56bf 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 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) +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 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) 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 tools.h export.h +install(FILES bank.h register.h dma.h event.h model.h error.h debug.h tools.h export.h DESTINATION include/pcilib ) |