summaryrefslogtreecommitdiffstats
path: root/test/CMakeLists.txt
blob: 7bd6c478beb886618bcff9cc467ef129a9b2f802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
add_executable(test-predicates src/test-predicates.cpp)
target_link_libraries(test-predicates uscxml)
add_test(test-predicates ${CURRENT_BINARY_DIR}/test-predicates ${CMAKE_SOURCE_DIR}/test/src/test-predicates.scxml)
set_target_properties(test-predicates PROPERTIES FOLDER "Tests")

add_executable(test-execution src/test-execution.cpp)
target_link_libraries(test-execution uscxml)
add_test(test-execution ${CURRENT_BINARY_DIR}/test-execution ${CMAKE_SOURCE_DIR}/test/src/test-execution.scxml)
set_target_properties(test-execution PROPERTIES FOLDER "Tests")

add_executable(test-apache-commons src/test-apache-commons.cpp)
target_link_libraries(test-apache-commons uscxml)
add_test(test-apache-commons ${CURRENT_BINARY_DIR}/test-apache-commons ${CMAKE_SOURCE_DIR}/test/samples/apache)
set_target_properties(test-apache-commons PROPERTIES FOLDER "Tests")

if (V8_FOUND)
	add_executable(test-ecmascript-v8 src/test-ecmascript-v8.cpp)
	target_link_libraries(test-ecmascript-v8 uscxml)
	add_test(test-ecmascript-v8 ${CURRENT_BINARY_DIR}/test-ecmascript-v8 ${CMAKE_SOURCE_DIR}/test/src/test-ecmascript.scxml)
	set_target_properties(test-ecmascript-v8 PROPERTIES FOLDER "Tests")
endif()

if (SWI_FOUND)
	add_executable(test-prolog-swi src/test-prolog-swi.cpp)
	target_link_libraries(test-prolog-swi uscxml)
	add_test(test-prolog-swi ${CURRENT_BINARY_DIR}/test-prolog-swi ${CMAKE_SOURCE_DIR}/test/src/test-prolog.scxml)
	set_target_properties(test-prolog-swi PROPERTIES FOLDER "Tests")
endif()

add_executable(test-communication src/test-communication.cpp)
target_link_libraries(test-communication uscxml)
add_test(test-communication ${CURRENT_BINARY_DIR}/test-communication ${CMAKE_SOURCE_DIR}/test/src/test-communication.scxml)
set_target_properties(test-communication PROPERTIES FOLDER "Tests")

add_executable(test-eventdelay src/test-eventdelay.cpp)
target_link_libraries(test-eventdelay uscxml)
add_test(test-eventdelay ${CURRENT_BINARY_DIR}/test-eventdelay)
set_target_properties(test-eventdelay PROPERTIES FOLDER "Tests")

add_executable(test-completion src/test-completion.cpp)
target_link_libraries(test-completion uscxml)
add_test(test-completion ${CURRENT_BINARY_DIR}/test-completion ${CMAKE_SOURCE_DIR}/test/src/test-donedata.scxml)
set_target_properties(test-completion PROPERTIES FOLDER "Tests")