diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-12-15 14:47:11 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-12-15 14:47:11 +0100 |
commit | 77c529f2c7eca27e7500ba02f916f0f443447d65 (patch) | |
tree | 48e1109b3ac99282cc100d4363241f537c74e011 /CMakeLists.txt | |
parent | 424dd760ee0a2e0734e89b70d834a29c4d9bbd7a (diff) | |
download | ipecamera-77c529f2c7eca27e7500ba02f916f0f443447d65.tar.gz ipecamera-77c529f2c7eca27e7500ba02f916f0f443447d65.tar.bz2 ipecamera-77c529f2c7eca27e7500ba02f916f0f443447d65.tar.xz ipecamera-77c529f2c7eca27e7500ba02f916f0f443447d65.zip |
Link fastwriter to pcitool, not a library
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2818ca6..e484f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ add_subdirectory(ipecamera) add_subdirectory(pcitool) add_library(pcilib SHARED pci.c register.c kmem.c irq.c dma.c event.c default.c tools.c error.c) -target_link_libraries(pcilib ufodecode fastwriter dma ipecamera) +target_link_libraries(pcilib ufodecode dma ipecamera) add_dependencies(pcilib dma ipecamera) set_target_properties(pcilib PROPERTIES @@ -38,7 +38,7 @@ set_target_properties(pcilib PROPERTIES if (NOT DISABLE_PCITOOL) add_executable(pci cli.c) add_dependencies(pci pcitool) - target_link_libraries(pci pcilib pcitool) + target_link_libraries(pci pcilib pcitool fastwriter) endif (NOT DISABLE_PCITOOL) #set_target_properties(pci PROPERTIES |