1
2cmake_policy(SET CMP0039 NEW)
3
4add_custom_target(utility
5  COMMAND ${CMAKE_COMMAND} -E echo test
6)
7target_link_libraries(utility m)
8