Skip to content

Commit 18d0b0c

Browse files
authored
TEMP: Always put lib under "lib" when installing
This is a temporary fix until this is properly fixed.
1 parent c733e0b commit 18d0b0c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

CMakeLists.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ option(CPPKAFKA_RDKAFKA_STATIC_LIB "Link with Rdkafka static library." OFF)
4141
math(EXPR BITS "8*${CMAKE_SIZEOF_VOID_P}")
4242

4343
# Properly set the output directory
44-
if (${BITS} EQUAL 64)
45-
set(LIBDIR "lib64")
46-
else()
47-
set(LIBDIR "lib")
48-
endif()
44+
#if (${BITS} EQUAL 64)
45+
# set(LIBDIR "lib64")
46+
#else()
47+
# set(LIBDIR "lib")
48+
#endif()
49+
set(LIBDIR "lib")
4950

5051
# Disable output from find_package macro
5152
if (NOT CPPKAFKA_CMAKE_VERBOSE)

0 commit comments

Comments
 (0)