/alps/pcitool

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/pcitool
201 by Suren A. Chilingaryan
Xilinx benchmark
1
include_directories(
2
    ${CMAKE_SOURCE_DIR}
240 by Suren A. Chilingaryan
More structural changes to get ready for stand-alone event engines
3
    ${CMAKE_SOURCE_DIR}/pcilib
201 by Suren A. Chilingaryan
Xilinx benchmark
4
)
5
240 by Suren A. Chilingaryan
More structural changes to get ready for stand-alone event engines
6
link_directories(
247 by Suren A. Chilingaryan
New error reporting public interface
7
    ${CMAKE_BINARY_DIR}/pcilib
240 by Suren A. Chilingaryan
More structural changes to get ready for stand-alone event engines
8
)
201 by Suren A. Chilingaryan
Xilinx benchmark
9
10
add_executable(xilinx xilinx.c)
202 by Suren A. Chilingaryan
Some tests with Xilinx DMA benchmark
11
target_link_libraries(xilinx pcilib rt)
202.1.1 by Suren A. Chilingaryan
Multipage DMA tests for Xilinx
12
210 by Suren A. Chilingaryan
Some tests are added
13
add_executable(pio_test pio_test.c)
14
target_link_libraries(pio_test pcilib rt)
15
16
add_executable(compare_to_value compare_to_value.c)
220 by Suren A. Chilingaryan
Add HEB scripts and re-organize the structure
17
18
add_executable(heb_strip_bad_values heb_strip_bad_values.c)
227 by Suren A. Chilingaryan
Initial implementation of IPEDMA, dummy driver for KAPTURE, start of API changes
19
add_executable(check_counter check_counter.c)
353 by Suren A. Chilingaryan
Merge Python scripting support from Vasiliy Chernov
20
21
add_executable(test_multithread test_multithread.c)
22
target_link_libraries (test_multithread pcilib ${CMAKE_THREAD_LIBS_INIT})