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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
# Include in all Prolog packages
#
# This CMAKE file is used to make handling the packages as uniform as
# possible such that we can perform all global package reorganization
# centrally.
# Get cmake files from this package, the package infrastructure and
# SWI-Prolog overall
set(CMAKE_MODULE_PATH
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/../cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/../../cmake")
# CMake modules we always need
include(CheckIncludeFile)
include(CheckFunctionExists)
include(CheckSymbolExists)
include(LibIndex)
if(MULTI_THREADED)
set(O_PLMT 1)
set(_REENTRANT 1) # FIXME: packages should use O_PLMT
endif()
string(REGEX REPLACE "^.*-" "" SWIPL_PKG ${PROJECT_NAME})
# get SWI-Prolog.h and SWI-Stream.h
include_directories(BEFORE ${SWIPL_ROOT}/src ${SWIPL_ROOT}/src/os)
if(WIN32)
include_directories(BEFORE
${SWIPL_ROOT}/src/os/windows
${SWIPL_ROOT}/src/win32/console)
endif()
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR})
# On ELF systems there is no need for the modules to link against the
# core system. Dropping this has two advantages: the result is easier to
# relocate and building the packages can for a large part happen
# concurrently with the main system.
#
# The Android linker does not make symbols globally visibly (unless the
# library is loaded using LD_PRELOAD) so we are linking the libraries
# here.
if(ANDROID)
set(SWIPL_LIBRARIES libswipl m log)
else()
if(CMAKE_EXECUTABLE_FORMAT STREQUAL "ELF")
set(SWIPL_LIBRARIES "")
else()
set(SWIPL_LIBRARIES libswipl)
endif()
endif()
# When installing to a non-standard location on macOS, the module
# @rpath needs to be set to be able to correctly find libswipl.dylib
if(APPLE AND (NOT CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT))
set(MACOSX_RPATH TRUE)
set(CMAKE_SKIP_BUILD_RPATH FALSE)
set(CMAKE_BUILD_INSTALL_WITH_INSTALL_RPATH FALSE)
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib/swipl/lib/${SWIPL_ARCH}")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
endif()
# add_index(dir file ...)
#
# Create INDEX.pl for ${dir} if at least on of the files is a .pl file
function(add_index dir)
if(dir)
set(has_pl OFF)
foreach(f ${ARGN})
get_filename_component(ext ${f} EXT)
if(ext STREQUAL .pl)
set(has_pl ON)
endif()
endforeach()
if(has_pl)
library_index(library/${dir})
endif()
endif()
endfunction()
# swipl_plugin(name
# [NOINDEX]
# [MODULE name]
# [C_SOURCES file ...]
# [C_LIBS lib ...]
# [C_INCLUDE_DIR dir ...]
# [PL_GENERATED_LIBRARIES ...]
# {[PL_LIB_SUBDIR subdir]
# [PL_LIBS file ...])}*
#
# Define a plugin. A plugin consists optionally of a shared object
# (module) and a number of Prolog sources that must be installed in the
# library or a subdirectory thereof. It creates a target ${name} that
# creates the shared object, make sure the Prolog sources are installed
# in our shadow home and the `install` target is extended to install the
# module and Prolog files.
#
# A SWI-Prolog package (directory under `packages`) may provide multiple
# plugins.
function(swipl_plugin name)
set(target ${name})
if(STATIC_EXTENSIONS)
set(type STATIC)
else()
set(type MODULE)
endif()
set(v_module ${name})
set(v_c_sources)
set(v_c_libs)
set(v_c_include_dirs)
set(v_pl_subdir) # current subdir
set(v_pl_subdirs) # list of subdirs
set(v_pl_gensubdirs) # list of subdirs (generated files)
set(v_index ON)
set(v_test OFF)
add_custom_target(${target})
set(mode)
foreach(arg ${ARGN})
if(arg STREQUAL "MODULE")
set(mode md_module)
elseif(arg STREQUAL "NOINDEX")
set(v_index OFF)
elseif(arg STREQUAL "TEST_ONLY")
set(v_test ON)
elseif(arg STREQUAL "SHARED")
set(mode md_module)
set(type SHARED)
elseif(arg STREQUAL "C_SOURCES")
set(mode c_sources)
elseif(arg STREQUAL "THREADED")
set(v_c_libs ${v_c_libs} ${CMAKE_THREAD_LIBS_INIT})
elseif(arg STREQUAL "C_LIBS")
set(mode c_libs)
elseif(arg STREQUAL "C_INCLUDE_DIR")
set(mode c_include_dirs)
elseif(arg STREQUAL "PL_LIB_SUBDIR")
set(mode pl_lib_subdir)
elseif(mode STREQUAL "pl_lib_subdir")
set(v_pl_subdir ${arg})
set(mode after_subdir)
elseif(mode STREQUAL after_subdir)
if(arg STREQUAL "PL_LIBS")
set(v_pl_subdirs ${v_pl_subdirs} "@${v_pl_subdir}")
string(REPLACE "/" "_" subdir_var "v_pl_subdir_${v_pl_subdir}")
set(${subdir_var})
elseif(arg STREQUAL "PL_GENERATED_LIBRARIES")
set(v_pl_gensubdirs ${v_pl_gensubdirs} "@${v_pl_subdir}")
string(REPLACE "/" "_" subdir_var "v_pl_gensubdir_${v_pl_subdir}")
set(${subdir_var})
else()
message(FATAL_ERROR "PL_LIB_SUBDIR must be followed by \
PL_LIBS or PL_GENERATED_LIBRARIES")
endif()
set(mode pl_files)
elseif(arg STREQUAL "PL_LIBS")
set(v_pl_subdirs ${v_pl_subdirs} "@${v_pl_subdir}")
string(REPLACE "/" "_" subdir_var "v_pl_subdir_${v_pl_subdir}")
set(${subdir_var})
set(mode pl_files)
elseif(arg STREQUAL "PL_GENERATED_LIBRARIES")
set(v_pl_gensubdirs ${v_pl_gensubdirs} "@${v_pl_subdir}")
string(REPLACE "/" "_" subdir_var "v_pl_gensubdir_${v_pl_subdir}")
set(${subdir_var})
set(mode pl_files)
elseif(mode STREQUAL "pl_files")
set(${subdir_var} ${${subdir_var}} ${arg})
elseif(mode STREQUAL "md_module")
set(v_module ${arg})
else()
set(v_${mode} ${v_${mode}} ${arg})
endif()
endforeach()
if(v_c_sources)
set(foreign_target "plugin_${v_module}")
add_library(${foreign_target} ${type} ${v_c_sources})
set_target_properties(${foreign_target} PROPERTIES
OUTPUT_NAME ${v_module} PREFIX "")
target_compile_options(${foreign_target} PRIVATE -D__SWI_PROLOG__)
if(STATIC_EXTENSIONS)
target_link_libraries(libswipl PRIVATE ${foreign_target} ${v_c_libs})
set_property(GLOBAL APPEND PROPERTY static_extension_libs ${v_module})
else()
target_link_libraries(${foreign_target} PRIVATE
${v_c_libs} ${SWIPL_LIBRARIES})
endif()
add_dependencies(library_index_library ${foreign_target})
if(v_c_include_dirs)
target_include_directories(${foreign_target} BEFORE PRIVATE
${v_c_include_dirs})
endif()
add_dependencies(${target} ${foreign_target})
if(NOT v_test OR INSTALL_TESTS)
install(TARGETS ${foreign_target}
LIBRARY DESTINATION ${SWIPL_INSTALL_MODULES})
endif()
endif()
foreach(sd ${v_pl_subdirs})
string(REPLACE "@" "" sd "${sd}")
string(REPLACE "/" "_" subdir_var "v_pl_subdir_${sd}")
if(${subdir_var})
string(REPLACE "/" "_" src_target "plugin_${name}_${sd}_pl_libs")
install_src(${src_target}
FILES ${${subdir_var}}
DESTINATION ${SWIPL_INSTALL_LIBRARY}/${sd})
add_dependencies(${target} ${src_target})
if(v_index AND sd)
add_index(${sd} ${${subdir_var}})
endif()
endif()
endforeach()
foreach(sd ${v_pl_gensubdirs})
string(REPLACE "@" "" sd "${sd}")
string(REPLACE "/" "_" subdir_var "v_pl_gensubdir_${sd}")
if(${subdir_var})
prepend(_genlibs ${CMAKE_CURRENT_BINARY_DIR}/ ${${subdir_var}})
string(REPLACE "/" "_" src_target "plugin_${name}_${sd}_pl_libs")
install(FILES ${_genlibs}
DESTINATION ${SWIPL_INSTALL_LIBRARY}/${sd})
endif()
endforeach()
endfunction(swipl_plugin)
# install_dll(file ...)
#
# Install support DLL files. This function is normally passes the link
# library used to build the dll. It determines the dll from this link
# library and copies this both to the current binary and final installation
# tree.
function(install_dll)
if(WIN32 AND NOT MSYS2)
set(dlls)
foreach(lib ${ARGN})
set(dll)
if(lib MATCHES "\\.lib$")
string(REPLACE ".lib" ".dll" dll ${lib})
elseif(lib MATCHES "\\.dll$")
set(dll ${lib})
elseif(lib MATCHES "\\.dll\\.a$")
string(REPLACE ".dll.a" ".la" la ${lib})
if(EXISTS ${la})
file(READ ${la} la_content)
string(REGEX MATCH "dlname='[-._a-zA-Z/0-9]*'" line ${la_content})
string(REGEX REPLACE "^dlname='(.*)'" "\\1" dlname ${line})
get_filename_component(dir ${lib} DIRECTORY)
get_filename_component(dll ${dir}/${dlname} ABSOLUTE)
else()
get_filename_component(base ${lib} NAME_WE)
file(STRINGS ${lib} dlnamelist REGEX "${base}.*\\.dll$")
list(GET dlnamelist 0 dlname)
get_filename_component(dir ${lib} DIRECTORY)
get_filename_component(dll ${dir}/../bin/${dlname} ABSOLUTE)
endif()
elseif(lib MATCHES "\\.a$")
get_filename_component(dir ${lib} DIRECTORY)
get_filename_component(base ${lib} NAME_WE)
file(STRINGS ${lib} dlnamelist REGEX "${base}.*\\.dll$")
if(dlnamelist)
list(GET dlnamelist 0 dlname)
get_filename_component(dll ${dir}/../bin/${dlname} ABSOLUTE)
endif()
endif()
if(dll)
set(dlls ${dlls} ${dll})
else()
message("Could not find DLL from ${lib}")
endif()
endforeach()
file(COPY ${dlls}
DESTINATION ${CMAKE_BINARY_DIR}/src)
install(FILES ${dlls}
DESTINATION ${SWIPL_INSTALL_ARCH_EXE})
endif()
endfunction()
# swipl_examples(file ... [SUBDIR dir])
#
# Install the examples
function(swipl_examples)
set(mode mfiles)
set(files)
set(dirs)
set(subdir)
set(subdir_)
foreach(arg ${ARGN})
if(arg STREQUAL "SUBDIR")
set(mode msubdir)
elseif(arg STREQUAL "FILES")
set(mode mfiles)
elseif(arg STREQUAL "DIRECTORIES")
set(mode mdirectories)
elseif(mode STREQUAL "msubdir")
set(subdir ${arg})
elseif(mode STREQUAL "mfiles")
set(files ${files} ${arg})
elseif(mode STREQUAL "mdirectories")
set(dirs ${dirs} ${arg})
endif()
endforeach()
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Documentation)
set(extdest ${SWIPL_INSTALL_DOC}/packages/examples/${SWIPL_PKG})
if(subdir)
set(extdest ${extdest}/${subdir})
set(subdir_ ${subdir}_)
endif()
get_filename_component(pkg ${CMAKE_CURRENT_SOURCE_DIR} NAME)
if(files)
install_src(plugin_${pkg}_${subdir_}example_files
FILES ${files} DESTINATION ${extdest}
COMPONENT Examples)
endif()
if(dirs)
install_src(plugin_${pkg}_${subdir_}example_dirs
DIRECTORY ${dirs} DESTINATION ${extdest}
COMPONENT Examples)
endif()
endfunction()
# test_lib(name
# [PACKAGES ...]
# [PARENT_LIB]
# [TEST_FILES ...]
# [TEST_DIRS ...])
#
# Run test_${name} in test_${name}.pl
#
# TEST_FILES_REGEX is only needed if the test files are *not* under a
# directory named test[s] or Test[s]. It is one regular expression
# which will be matched against the full path of the package source
# and build directories.
if(NOT SWIPL_PATH_SEP)
set(SWIPL_PATH_SEP ":")
endif()
function(test_lib name)
cmake_parse_arguments(my "PARENT_LIB" "NAME"
"TEST_FILES;TEST_DIRS;PACKAGES" ${ARGN})
set(test_goal "test_${name}")
set(test_source_basename "test_${name}.pl")
set(test_source "${CMAKE_CURRENT_SOURCE_DIR}/${test_source_basename}")
if(my_NAME)
set(test_name ${my_NAME})
else()
set(test_name ${name})
endif()
foreach(pkg ${my_PACKAGES})
get_filename_component(src ${CMAKE_CURRENT_SOURCE_DIR}/../${pkg} ABSOLUTE)
get_filename_component(bin ${CMAKE_CURRENT_BINARY_DIR}/../${pkg} ABSOLUTE)
set(pforeign "${pforeign}${SWIPL_PATH_SEP}${bin}")
endforeach()
add_test(NAME "${SWIPL_PKG}:${test_name}"
COMMAND ${PROG_SWIPL} -p "foreign=${pforeign}"
-f none --no-packs --on-error=status -s ${test_source}
-g "${test_goal}"
-t halt)
# Write db with lists of tests to be used with -DINSTALL_TESTS
if(INSTALL_TESTS)
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Tests)
file(RELATIVE_PATH rel_test_dir
${CMAKE_CURRENT_SOURCE_DIR}/../.. ${CMAKE_CURRENT_SOURCE_DIR})
file(APPEND ${INSTALL_TESTS_DB}
"cmake_test('${SWIPL_PKG}', '${test_name}',
test_goal('${rel_test_dir}',
'${test_source_basename}',
'${test_goal}')).\n")
install(FILES ${test_source} DESTINATION
${INSTALL_TESTS_DIR}/packages/${SWIPL_PKG})
# Install files needed for testing at run time
if(my_TEST_FILES)
install(FILES ${my_TEST_FILES} DESTINATION
${INSTALL_TESTS_DIR}/packages/${SWIPL_PKG})
endif()
if(my_TEST_DIRS)
install(DIRECTORY ${my_TEST_DIRS} DESTINATION
${INSTALL_TESTS_DIR}/packages/${SWIPL_PKG})
endif()
endif(INSTALL_TESTS)
endfunction(test_lib)
# test_libs(name ...
# [PACKAGES package ...]
# [PARENT_LIB])
function(test_libs)
set(mode tests)
set(tests)
set(packages)
set(extra)
set(test_dirs)
set(test_files)
foreach(arg ${ARGN})
if(arg STREQUAL "PACKAGES")
set(mode "packages")
elseif(arg STREQUAL "PARENT_LIB")
set(extra PARENT_LIB)
elseif(arg STREQUAL "TEST_DIRS")
set(mode "test_dirs")
elseif(arg STREQUAL "TEST_FILES")
set(mode "test_files")
else()
set(${mode} ${${mode}} ${arg})
endif()
endforeach()
foreach(test ${tests})
test_lib(${test}
PACKAGES ${packages}
TEST_DIRS ${test_dirs}
TEST_FILES ${test_files}
${extra})
endforeach()
endfunction(test_libs)
# Documentation support
include(PackageDoc)
|