From d3deef0368e7918dd0550bd153eb494cae35dfbe Mon Sep 17 00:00:00 2001 From: Hugo Parente Lima Date: Fri, 20 Aug 2010 11:39:28 -0300 Subject: Fixed shiboken library name on windows. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's now called shiboken.dll instead of libshiboken.dll. Reviewer: Luciano Wolf Renato Araújo --- libshiboken/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libshiboken/CMakeLists.txt') diff --git a/libshiboken/CMakeLists.txt b/libshiboken/CMakeLists.txt index 8116bf972..74d0c0219 100644 --- a/libshiboken/CMakeLists.txt +++ b/libshiboken/CMakeLists.txt @@ -33,9 +33,11 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${PYTHON_INCLUDE_PATH} ${SPARSEHASH_INCLUDE_PATH}) add_library(libshiboken SHARED ${libshiboken_SRC}) -set_property(TARGET libshiboken PROPERTY PREFIX "") target_link_libraries(libshiboken ${SBK_PYTHON_LIBRARIES}) -set_target_properties(libshiboken PROPERTIES VERSION ${libshiboken_VERSION} SOVERSION ${libshiboken_SOVERSION} DEFINE_SYMBOL LIBSHIBOKEN_EXPORTS) +set_target_properties(libshiboken PROPERTIES OUTPUT_NAME "shiboken" + VERSION ${libshiboken_VERSION} + SOVERSION ${libshiboken_SOVERSION} + DEFINE_SYMBOL LIBSHIBOKEN_EXPORTS) install(FILES autodecref.h -- cgit v1.2.3