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)
|