Skip to content

Commit 1e87e6c

Browse files
committed
fix melconfig.cmake
1 parent c7e6a47 commit 1e87e6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmake/MELConfig.cmake.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ if(NOT TARGET MEL::MEL)
88
list(APPEND CMAKE_MODULE_PATH "${MEL_CMAKE_DIR}/Modules")
99
# find dependencies and set targets filename
1010
if (MSVC)
11-
find_dependency(HIL)
12-
find_dependency(NIDAQmx)
13-
find_dependency(Myo)
11+
find_package(HIL QUIET)
12+
find_package(NIDAQmx QUIET)
13+
find_package(Myo QUIET)
1414
endif()
1515
# include the appropriate targets file
1616
include("${MEL_CMAKE_DIR}/MELTargets.cmake")

0 commit comments

Comments
 (0)