blob: 26c91047d7739e8ba798abcedd2f0fb5dc468549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff --git a/repository.cmake b/repository.cmake
index f02ba90..4dbd81f 100644
--- a/repository.cmake
+++ b/repository.cmake
@@ -3151,11 +3151,7 @@ function (ntf_adapter_end)
set(target_output_name "${target}")
endif()
- if (${is_64_bit} AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
- set(lib_name "lib64" CACHE INTERNAL "")
- else()
- set(lib_name "lib" CACHE INTERNAL "")
- endif()
+ set(lib_name "lib" CACHE INTERNAL "")
# Set the relative path to the library directory under the prefix. For
# example: lib64
@@ -4028,11 +4024,7 @@ function (ntf_group_end)
set(target_output_name "${target}")
endif()
- if (${is_64_bit} AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
- set(lib_name "lib64" CACHE INTERNAL "")
- else()
- set(lib_name "lib" CACHE INTERNAL "")
- endif()
+ set(lib_name "lib" CACHE INTERNAL "")
# Set the relative path to the library directory under the prefix. For
# example: lib64
|