Skip to content

Commit

Permalink
no LIB_SUFFIX on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rigazilla committed Sep 15, 2022
1 parent 586c59c commit 7eaad63
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,9 @@ if(NOT DEFINED HOTROD_PREBUILT_LIB_DIR)
endif(DEFINED ENV{RPM_PROTOBUF_VERSION})
if(CMAKE_SIZEOF_VOID_P MATCHES "8")
set(PACKAGE_ARCH "x86_64")
set(LIB_SUFFIX 64)
if(NOT DEFINED WIN32)
set(LIB_SUFFIX 64)
endif(NOT DEFINED WIN32)
else(CMAKE_SIZEOF_VOID_P MATCHES "8")
set(PACKAGE_ARCH "i686")
endif(CMAKE_SIZEOF_VOID_P MATCHES "8")
Expand Down

0 comments on commit 7eaad63

Please sign in to comment.