David Coeurjolly 78857af2eb cleanup
2023-01-10 10:47:21 +01:00

11 lines
191 B
CMake

set(EXAMPLES
colorTransfer
)
foreach(EXAMPLE ${EXAMPLES})
add_executable(${EXAMPLE} ${EXAMPLE}.cpp)
if(UNIX)
target_link_libraries(${EXAMPLE} -lm)
endif()
endforeach()