Skip to content

Commit

Permalink
Fixed a problem with the extension of the python binding library on L…
Browse files Browse the repository at this point in the history
…inux systems
  • Loading branch information
YuvalNirkin committed Sep 10, 2018
1 parent 0e25116 commit d2abf68
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions interfaces/python/CMakeLists.txt
Expand Up @@ -13,10 +13,12 @@ target_link_libraries(face_swap_py
${PYTHON_LIBRARIES}
${Boost_LIBRARIES}
)
set_target_properties(face_swap_py PROPERTIES
PREFIX ""
SUFFIX ".pyd"
)
if(WIN32)
set_target_properties(face_swap_py PROPERTIES
PREFIX ""
SUFFIX ".pyd"
)
endif()
if(MSVC)
set_target_properties(face_swap_py
PROPERTIES
Expand Down

0 comments on commit d2abf68

Please sign in to comment.