2013-07-21 22:08:14 +00:00
|
|
|
add_executable(name name.cpp)
|
|
|
|
target_link_libraries(name ${EXTRA_LIBS})
|
|
|
|
add_test(name ${CMAKE_CURRENT_BINARY_DIR}/name)
|
2013-08-13 10:40:51 +00:00
|
|
|
add_executable(sexpr_tst sexpr.cpp)
|
|
|
|
target_link_libraries(sexpr_tst ${EXTRA_LIBS})
|
|
|
|
add_test(sexpr ${CMAKE_CURRENT_BINARY_DIR}/sexpr_tst)
|
2013-07-23 23:20:44 +00:00
|
|
|
add_executable(format format.cpp)
|
|
|
|
target_link_libraries(format ${EXTRA_LIBS})
|
|
|
|
add_test(format ${CMAKE_CURRENT_BINARY_DIR}/format)
|
2013-07-24 21:41:03 +00:00
|
|
|
add_executable(buffer buffer.cpp)
|
|
|
|
target_link_libraries(buffer ${EXTRA_LIBS})
|
|
|
|
add_test(buffer ${CMAKE_CURRENT_BINARY_DIR}/buffer)
|
2013-07-24 23:32:50 +00:00
|
|
|
add_executable(list list.cpp)
|
|
|
|
target_link_libraries(list ${EXTRA_LIBS})
|
|
|
|
add_test(list ${CMAKE_CURRENT_BINARY_DIR}/list)
|
2013-08-07 20:54:18 +00:00
|
|
|
add_executable(scoped_set scoped_set.cpp)
|
|
|
|
target_link_libraries(scoped_set ${EXTRA_LIBS})
|
|
|
|
add_test(scoped_set ${CMAKE_CURRENT_BINARY_DIR}/scoped_set)
|
2013-08-08 23:30:35 +00:00
|
|
|
add_executable(options options.cpp)
|
|
|
|
target_link_libraries(options ${EXTRA_LIBS})
|
|
|
|
add_test(options ${CMAKE_CURRENT_BINARY_DIR}/options)
|
2013-08-11 02:27:56 +00:00
|
|
|
add_executable(scoped_map scoped_map.cpp)
|
|
|
|
target_link_libraries(scoped_map ${EXTRA_LIBS})
|
|
|
|
add_test(scoped_map ${CMAKE_CURRENT_BINARY_DIR}/scoped_map)
|
2013-08-12 21:10:21 +00:00
|
|
|
add_executable(thread thread.cpp)
|
|
|
|
target_link_libraries(thread ${EXTRA_LIBS})
|
|
|
|
add_test(thread ${CMAKE_CURRENT_BINARY_DIR}/thread)
|
2013-09-21 05:37:13 +00:00
|
|
|
add_executable(memory memory.cpp)
|
|
|
|
target_link_libraries(memory ${EXTRA_LIBS})
|
|
|
|
add_test(memory ${CMAKE_CURRENT_BINARY_DIR}/memory)
|
2013-09-24 05:30:41 +00:00
|
|
|
add_executable(splay_tree splay_tree.cpp)
|
|
|
|
target_link_libraries(splay_tree ${EXTRA_LIBS})
|
|
|
|
add_test(splay_tree ${CMAKE_CURRENT_BINARY_DIR}/splay_tree)
|
2013-09-24 08:43:58 +00:00
|
|
|
add_executable(splay_map splay_map.cpp)
|
|
|
|
target_link_libraries(splay_map ${EXTRA_LIBS})
|
|
|
|
add_test(splay_map ${CMAKE_CURRENT_BINARY_DIR}/splay_map)
|
2013-09-26 03:30:05 +00:00
|
|
|
add_executable(trace trace.cpp)
|
|
|
|
target_link_libraries(trace ${EXTRA_LIBS})
|
|
|
|
add_test(trace ${CMAKE_CURRENT_BINARY_DIR}/trace)
|
2013-09-26 03:41:25 +00:00
|
|
|
add_executable(exception exception.cpp)
|
|
|
|
target_link_libraries(exception ${EXTRA_LIBS})
|
|
|
|
add_test(exception ${CMAKE_CURRENT_BINARY_DIR}/exception)
|
2013-09-26 03:55:23 +00:00
|
|
|
add_executable(bit_tricks bit_tricks.cpp)
|
|
|
|
target_link_libraries(bit_tricks ${EXTRA_LIBS})
|
|
|
|
add_test(bit_tricks ${CMAKE_CURRENT_BINARY_DIR}/bit_tricks)
|
2013-09-29 19:33:12 +00:00
|
|
|
add_executable(lazy_list lazy_list.cpp)
|
|
|
|
target_link_libraries(lazy_list ${EXTRA_LIBS})
|
|
|
|
add_test(lazy_list ${CMAKE_CURRENT_BINARY_DIR}/lazy_list)
|
2013-09-30 00:03:48 +00:00
|
|
|
add_executable(hash hash.cpp)
|
|
|
|
target_link_libraries(hash ${EXTRA_LIBS})
|
|
|
|
add_test(hash ${CMAKE_CURRENT_BINARY_DIR}/hash)
|
2013-09-30 00:19:19 +00:00
|
|
|
add_executable(safe_arith safe_arith.cpp)
|
|
|
|
target_link_libraries(safe_arith ${EXTRA_LIBS})
|
|
|
|
add_test(safe_arith ${CMAKE_CURRENT_BINARY_DIR}/safe_arith)
|
2013-10-14 18:27:47 +00:00
|
|
|
add_executable(set set.cpp)
|
|
|
|
target_link_libraries(set ${EXTRA_LIBS})
|
|
|
|
add_test(set ${CMAKE_CURRENT_BINARY_DIR}/set)
|
2013-11-23 23:33:25 +00:00
|
|
|
add_executable(optional optional.cpp)
|
|
|
|
target_link_libraries(optional ${EXTRA_LIBS})
|
|
|
|
add_test(optional ${CMAKE_CURRENT_BINARY_DIR}/optional)
|
2013-12-01 20:42:32 +00:00
|
|
|
add_executable(stackinfo stackinfo.cpp)
|
|
|
|
target_link_libraries(stackinfo ${EXTRA_LIBS})
|
|
|
|
add_test(stackinfo ${CMAKE_CURRENT_BINARY_DIR}/stackinfo)
|
2013-12-28 00:45:40 +00:00
|
|
|
add_executable(serializer serializer.cpp)
|
|
|
|
target_link_libraries(serializer ${EXTRA_LIBS})
|
|
|
|
add_test(serializer ${CMAKE_CURRENT_BINARY_DIR}/serializer)
|