Skip to content
Snippets Groups Projects

BLASTER v1.0

Merged Paul Dechamps requested to merge dev into master
Files
73
+ 36
0
# Copyright 2020 University of Liège
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# CMake input file of the SWIG wrapper around "blastw.so"
INCLUDE(${SWIG_USE_FILE})
FILE(GLOB SRCS *.h *.cpp *.inl *.swg)
FILE(GLOB ISRCS *.i)
SET_SOURCE_FILES_PROPERTIES(${ISRCS} PROPERTIES CPLUSPLUS ON)
SET(CMAKE_SWIG_FLAGS ${CMAKE_SWIG_FLAGS} "-interface" "_blastw") # avoids "import _module_d" with MSVC/Debug
SWIG_ADD_LIBRARY(blastw LANGUAGE python SOURCES ${ISRCS} ${SRCS})
SET_PROPERTY(TARGET blastw PROPERTY SWIG_USE_TARGET_INCLUDE_DIRECTORIES ON)
MACRO_DebugPostfix(blastw)
TARGET_INCLUDE_DIRECTORIES(blastw PRIVATE ${PROJECT_SOURCE_DIR}/blast/_src
${PROJECT_SOURCE_DIR}/modules/dartflo/ext/amfe/tbox/_src
${PROJECT_SOURCE_DIR}/modules/dartflo/ext/amfe/fwk/_src
${PROJECT_SOURCE_DIR}/modules/dartflo/dart/_src
${PYTHON_INCLUDE_PATH})
TARGET_LINK_LIBRARIES(blastw PRIVATE blast dart tbox fwk ${PYTHON_LIBRARIES})
INSTALL(FILES ${EXECUTABLE_OUTPUT_PATH}/\${BUILD_TYPE}/blastw.py DESTINATION ${CMAKE_INSTALL_PREFIX})
INSTALL(TARGETS blastw DESTINATION ${CMAKE_INSTALL_PREFIX})
Loading