10 lines
156 B
CMake
10 lines
156 B
CMake
set(TOOLS
|
|
|
|
)
|
|
|
|
foreach(tool ${TOOLS})
|
|
add_executable(${tool} ${tool}.cpp)
|
|
add_dependencies(${tool} dipp)
|
|
target_link_libraries(${tool} dipp)
|
|
endforeach()
|