We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b8dc7 commit f7801e1Copy full SHA for f7801e1
cpp/CMakeLists.txt
@@ -91,9 +91,9 @@ elseif (WIN32)
91
else()
92
target_include_directories(AdsToJava-3 PRIVATE "/usr/local/include/")
93
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
94
- find_library(TC_ADS_DLL_LIBRARY NAMES "libTcAdsDll" HINTS "/usr/local/lib32/" REQUIRED)
+ find_library(TC_ADS_DLL_LIBRARY NAMES "TcAdsDll" "libTcAdsDll" HINTS "/usr/local/lib32/" REQUIRED)
95
96
- find_library(TC_ADS_DLL_LIBRARY NAMES "libTcAdsDll" HINTS "/usr/local/lib/" REQUIRED)
+ find_library(TC_ADS_DLL_LIBRARY NAMES "TcAdsDll" "libTcAdsDll" HINTS "/usr/local/lib/" REQUIRED)
97
endif()
98
99
target_link_libraries(AdsToJava-3 "${TC_ADS_DLL_LIBRARY}")
0 commit comments