swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: c7fc4c074ba76e6ac8d0e41cb72f120961dcc6eb authored by johannes hanika on 09 January 2016, 14:53:26 UTC
rawdenoise: some cleanup and make eaw/a-trous a run-time option
Tip revision: c7fc4c0
FindUnity.cmake
SET(UNITY_FIND_REQUIRED ${Unity_FIND_REQUIRED})

include(Prebuilt)

include(LibFindMacros)
libfind_pkg_check_modules(UNITY unity)
foreach(i ${UNITY_LIBRARIES})
	find_library(_unity_LIBRARY NAMES ${i} HINTS ${UNITY_LIBRARY_DIRS})
	LIST(APPEND UNITY_LIBRARY ${_unity_LIBRARY})
	unset(_unity_LIBRARY CACHE)
endforeach(i)
set(UNITY_LIBRARIES ${UNITY_LIBRARY})
unset(UNITY_LIBRARY CACHE)

if (UNITY_FOUND)
  set(UNITY ON CACHE BOOL "Build with libunity support.")
endif (UNITY_FOUND)
back to top