1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
# lib/nn/CMakeLists.txt for PLplot
# Copyright (C) 2006-2018 Alan W. Irwin
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published
# by the Free Software Foundation; version 2 of the License.
#
# PLplot is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
if(PL_HAVE_QHULL)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/nndll.h.in
${CMAKE_CURRENT_BINARY_DIR}/nndll.h
)
set(nn_LIB_HDRS
${CMAKE_CURRENT_SOURCE_DIR}/nn.h
${CMAKE_CURRENT_BINARY_DIR}/nndll.h
)
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
)
set(csironn_LIB_SRCS
delaunay.c
hash.c
istack.c
lpi.c
nnai.c
nnpi.c
nncommon.c
)
if(HAS_LIBQHULL_INCLUDE)
set_source_files_properties(delaunay.c
PROPERTIES COMPILE_DEFINITIONS HAS_LIBQHULL_INCLUDE
)
endif(HAS_LIBQHULL_INCLUDE)
set_source_files_properties(
${csironn_LIB_SRCS}
PROPERTIES
COMPILE_FLAGS "-I${QHULL_INCLUDE_DIRS}"
)
set(csironn_LINK_LIBRARIES ${QHULL_LIBRARIES})
if(MATH_LIB)
list(APPEND csironn_LINK_LIBRARIES ${MATH_LIB})
endif(MATH_LIB)
configure_library_build(csironn "" "${csironn_LIB_SRCS}" "${csironn_LINK_LIBRARIES}")
install(TARGETS ${WRITEABLE_TARGET}csironn
EXPORT export_plplot
ARCHIVE DESTINATION ${LIB_DIR}
LIBRARY DESTINATION ${LIB_DIR}
RUNTIME DESTINATION ${BIN_DIR}
)
set(nn_DOCFILES
README
)
install(FILES README DESTINATION ${DOC_DIR} RENAME README.nn)
install(FILES ${nn_LIB_HDRS} DESTINATION ${INCLUDE_DIR})
endif(PL_HAVE_QHULL)
|