Commit 781f013d authored by Dominik Charousset's avatar Dominik Charousset

moved dependency declarations to subproject CMake files

parent a7774469
......@@ -24,7 +24,7 @@ macro(add_unit_test name)
add_executable(test__${name} test__${name}.cpp ${ARGN})
target_link_libraries(test__${name} ${EXAMPLE_LIBS} ${CMAKE_THREAD_LIBS_INIT})
add_test(${name} ${EXECUTABLE_OUTPUT_PATH}/test__${name})
add_dependencies(${name} libcppa)
add_dependencies(test__${name} libcppa)
endmacro()
add_unit_test(ripemd_160)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment