Skip to content
This repository has been archived by the owner on Jun 26, 2019. It is now read-only.

cmake: Remove REQUIRED from exported configuration #86

Merged
merged 1 commit into from
Oct 10, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/ome/files/OMEFilesConfig.cmake.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@PACKAGE_INIT@

include(CMakeFindDependencyMacro)
find_dependency(OMECommon REQUIRED COMPONENTS Common XML)
find_dependency(Boost 1.46 REQUIRED COMPONENTS boost iostreams filesystem)
find_dependency(TIFF REQUIRED)
find_dependency(OMECommon COMPONENTS Common XML)
find_dependency(Boost 1.46 COMPONENTS boost iostreams filesystem)
find_dependency(TIFF)

include(${CMAKE_CURRENT_LIST_DIR}/OMEFilesInternal.cmake)

Expand Down