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)
|
2014-04-26 01:30:40 +00:00
|
|
|
add_executable(occurs occurs.cpp)
|
|
|
|
target_link_libraries(occurs ${EXTRA_LIBS})
|
|
|
|
add_test(occurs ${CMAKE_CURRENT_BINARY_DIR}/occurs)
|
2014-07-03 18:28:21 +00:00
|
|
|
add_executable(unifier unifier.cpp)
|
|
|
|
target_link_libraries(unifier ${EXTRA_LIBS})
|
|
|
|
add_test(unifier ${CMAKE_CURRENT_BINARY_DIR}/unifier)
|