Skip to content

Commit da8d0fd

Browse files
committed
try to fix CMake
1 parent e9cefa8 commit da8d0fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

core/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ if (CLANG_TIDY_EXE)
428428
)
429429
endif ()
430430

431-
if (NOT (IRESEARCH_EXTERNAL_DEPENDENCIES STREQUAL ""))
431+
if (NOT ("${IRESEARCH_EXTERNAL_DEPENDENCIES}" STREQUAL ""))
432432
add_dependencies(iresearch-static ${IRESEARCH_EXTERNAL_DEPENDENCIES})
433433
endif()
434434

@@ -507,7 +507,7 @@ target_link_libraries(iresearch-analyzer-text-static
507507
stemmer-static
508508
)
509509

510-
if (NOT (IRESEARCH_EXTERNAL_DEPENDENCIES STREQUAL ""))
510+
if (NOT ("${IRESEARCH_EXTERNAL_DEPENDENCIES}" STREQUAL ""))
511511
add_dependencies(iresearch-analyzer-text-static ${IRESEARCH_EXTERNAL_DEPENDENCIES})
512512
endif()
513513

@@ -538,7 +538,7 @@ target_link_libraries(iresearch-analyzer-collation-static
538538
iresearch-static
539539
)
540540

541-
if (NOT (IRESEARCH_EXTERNAL_DEPENDENCIES STREQUAL ""))
541+
if (NOT ("${IRESEARCH_EXTERNAL_DEPENDENCIES}" STREQUAL ""))
542542
add_dependencies(iresearch-analyzer-collation-static ${IRESEARCH_EXTERNAL_DEPENDENCIES})
543543
endif()
544544

@@ -591,7 +591,7 @@ target_link_libraries(iresearch-analyzer-norm-static
591591
iresearch-static
592592
)
593593

594-
if (NOT (IRESEARCH_EXTERNAL_DEPENDENCIES STREQUAL ""))
594+
if (NOT ("${IRESEARCH_EXTERNAL_DEPENDENCIES}" STREQUAL ""))
595595
add_dependencies(iresearch-analyzer-norm-static ${IRESEARCH_EXTERNAL_DEPENDENCIES})
596596
endif()
597597

@@ -625,7 +625,7 @@ target_link_libraries(iresearch-analyzer-stem-static
625625
stemmer-static
626626
)
627627

628-
if (NOT (IRESEARCH_EXTERNAL_DEPENDENCIES STREQUAL ""))
628+
if (NOT ("${IRESEARCH_EXTERNAL_DEPENDENCIES}" STREQUAL ""))
629629
add_dependencies(iresearch-analyzer-stem-static ${IRESEARCH_EXTERNAL_DEPENDENCIES})
630630
endif()
631631

0 commit comments

Comments
 (0)