2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 09:02:15 +00:00

Build python modules without leading 'lib' and not single threaded

[SVN r52249]
This commit is contained in:
Troy D. Straszheim
2009-04-08 11:54:20 +00:00
parent 0b7333f854
commit c9e694bed8

View File

@@ -61,8 +61,16 @@ if (PYTHON_LIBRARIES)
MODULE
LINK_LIBS ${PYTHON_LIBRARIES}
DEPENDS boost_python
NO_STATIC
NO_SINGLE_THREADED
)
set_target_properties(${MODULE_NAME}-mt-shared
PROPERTIES
PREFIX ""
OUTPUT_NAME ${MODULE_NAME}
)
endmacro(boost_python_extension)
#--
################################################################################