2013-09-08 05:33:18 +00:00
|
|
|
add_executable(light_checker light_checker.cpp)
|
|
|
|
target_link_libraries(light_checker ${EXTRA_LIBS})
|
|
|
|
add_test(light_checker ${CMAKE_CURRENT_BINARY_DIR}/light_checker)
|
2013-09-19 03:46:00 +00:00
|
|
|
add_executable(ho_unifier ho_unifier.cpp)
|
|
|
|
target_link_libraries(ho_unifier ${EXTRA_LIBS})
|
|
|
|
add_test(ho_unifier ${CMAKE_CURRENT_BINARY_DIR}/ho_unifier)
|
2013-09-21 04:46:32 +00:00
|
|
|
add_executable(formatter formatter.cpp)
|
|
|
|
target_link_libraries(formatter ${EXTRA_LIBS})
|
|
|
|
add_test(formatter ${CMAKE_CURRENT_BINARY_DIR}/formatter)
|
2013-09-21 05:01:40 +00:00
|
|
|
add_executable(max_sharing max_sharing.cpp)
|
|
|
|
target_link_libraries(max_sharing ${EXTRA_LIBS})
|
|
|
|
add_test(max_sharing ${CMAKE_CURRENT_BINARY_DIR}/max_sharing)
|
2013-09-24 19:16:32 +00:00
|
|
|
add_executable(expr_lt expr_lt.cpp)
|
|
|
|
target_link_libraries(expr_lt ${EXTRA_LIBS})
|
|
|
|
add_test(expr_lt ${CMAKE_CURRENT_BINARY_DIR}/expr_lt)
|
2013-09-26 03:25:24 +00:00
|
|
|
add_executable(deep_copy deep_copy.cpp)
|
|
|
|
target_link_libraries(deep_copy ${EXTRA_LIBS})
|
|
|
|
add_test(deep_copy ${CMAKE_CURRENT_BINARY_DIR}/deep_copy)
|
2013-09-27 02:42:02 +00:00
|
|
|
add_executable(reduce reduce.cpp)
|
|
|
|
target_link_libraries(reduce ${EXTRA_LIBS})
|
|
|
|
add_test(reduce ${CMAKE_CURRENT_BINARY_DIR}/reduce)
|
|
|
|
add_executable(arith_tst arith.cpp)
|
|
|
|
target_link_libraries(arith_tst ${EXTRA_LIBS})
|
|
|
|
add_test(arith_tst ${CMAKE_CURRENT_BINARY_DIR}/arith_tst)
|
2013-10-02 01:52:18 +00:00
|
|
|
add_executable(replace_using_ctx replace_using_ctx.cpp)
|
|
|
|
target_link_libraries(replace_using_ctx ${EXTRA_LIBS})
|
|
|
|
add_test(replace_using_ctx ${CMAKE_CURRENT_BINARY_DIR}/replace_using_ctx)
|