11 lines
191 B
CMake
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()
|