From kde-commits Sat Mar 02 22:01:44 2013 From: Arno Rehn Date: Sat, 02 Mar 2013 22:01:44 +0000 To: kde-commits Subject: [smokegen] cmake: we really want lib and not bin even on win32 Message-Id: <20130302220144.D81BEA604F () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=136226171401934 Git commit ad49cb4d94a783f08649e6c6e9f34428ff1c442b by Arno Rehn, on behalf= of David Lechner. Committed on 28/02/2013 at 00:01. Pushed by arnorehn into branch 'master'. we really want lib and not bin even on win32 M +7 -15 cmake/SmokeConfig.cmake.in http://commits.kde.org/smokegen/ad49cb4d94a783f08649e6c6e9f34428ff1c442b diff --git a/cmake/SmokeConfig.cmake.in b/cmake/SmokeConfig.cmake.in index 947315c..48316b6 100644 --- a/cmake/SmokeConfig.cmake.in +++ b/cmake/SmokeConfig.cmake.in @@ -34,7 +34,7 @@ endfunction (_print type message) = ############################## # find individual smoke libs # -##############################Smoke_FIND_REQUIRED +############################## = macro (find_smoke_component name) string(TOUPPER ${name} uppercase) @@ -46,20 +46,12 @@ macro (find_smoke_component name) find_path(SMOKE_${uppercase}_INCLUDE_DIR = ${lowercase}_smoke.h = PATH ${SMOKE_INCLUDE_DIR} - NO_DEFAULT_PATH - ) - if(WIN32) - # DLLs are in the bin directory. - find_library(SMOKE_${uppercase}_LIBRARY - smoke${lowercase} - PATHS "@CMAKE_INSTALL_PREFIX@/bin" - NO_DEFAULT_PATH) - else(WIN32) - find_library(SMOKE_${uppercase}_LIBRARY - smoke${lowercase} - PATHS "@SMOKE_LIBRARY_PREFIX@" - NO_DEFAULT_PATH) - endif(WIN32) + NO_DEFAULT_PATH) + + find_library(SMOKE_${uppercase}_LIBRARY + smoke${lowercase} + PATHS "@SMOKE_LIBRARY_PREFIX@" + NO_DEFAULT_PATH) = if (NOT SMOKE_${uppercase}_INCLUDE_DIR OR NOT SMOKE_${uppercase}_L= IBRARY) if (Smoke_FIND_REQUIRED)