소스 검색

CTKCore: Fix typo introduced in commontk/CTK@f8b31c3

Jean-Christophe Fillion-Robin 9 년 전
부모
커밋
374ad60c67
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Libs/Core/CMakeLists.txt

+ 2 - 1
Libs/Core/CMakeLists.txt

@@ -146,7 +146,8 @@ if(UNIX)
   # FreeBSD: The same functionality that is in linux's libdl is provided in FreeBSD's libc
   find_library(HAVE_LIBDL dl)
   if(HAVE_LIBDL)
-  target_link_libraries(${PROJECT_NAME} dl)
+    target_link_libraries(${PROJECT_NAME} dl)
+  endif()
 elseif(WIN32 AND NOT MINGW)
   target_link_libraries(${PROJECT_NAME} dbghelp)
 endif()