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
|
# This file is part of the Spring engine (GPL v2 or later), see LICENSE.html
#
# Spring Java related CMake utilities
# -----------------------------------
#
# Variables set in this file:
# * JAVA_GLOBAL_LIBS_DIRS
#
# Functions and macros defined in this file:
# * find_java_lib
# * get_first_sub_dir_name
# * create_classpath
# * concat_classpaths
# * find_manifest_file
#
if (CMAKE_HOST_WIN32)
set(JAVA_GLOBAL_LIBS_DIRS "${MINGWLIBS}")
else (CMAKE_HOST_WIN32)
set(JAVA_GLOBAL_LIBS_DIRS "/usr/share/java" "/usr/local/share/java")
endif (CMAKE_HOST_WIN32)
make_global(JAVA_GLOBAL_LIBS_DIRS)
# Looks for a Java library (Jar file) in system wide search paths and in
# additional dirs supplied as argument.
macro (find_java_lib path_var libName additionalSearchDirs)
find_file(${path_var} "${libName}.jar"
PATHS ${additionalSearchDirs} ${JAVA_GLOBAL_LIBS_DIRS}
DOC "Path to the Java library ${libName}.jar"
NO_DEFAULT_PATH
NO_CMAKE_FIND_ROOT_PATH
)
if (NOT ${path_var})
message(SEND_ERROR "${libName}.jar not found!")
else (NOT ${path_var})
ai_message(STATUS "Found ${libName}.jar: ${${path_var}}")
endif (NOT ${path_var})
endmacro (find_java_lib path_var libName additionalSearchDirs)
# Returns the name of the first sub-dir (in alphabetical descending order)
# under dir.
macro (get_first_sub_dir_name name_var dir)
file(GLOB dirContent RELATIVE "${dir}" "${dir}/*")
foreach (dirPart ${dirContent})
if (IS_DIRECTORY "${dir}/${dirPart}")
set(${name_var} ${dirPart})
break()
endif (IS_DIRECTORY "${dir}/${dirPart}")
endforeach (dirPart)
endmacro (get_first_sub_dir_name name_var dir)
# Recursively lists all JAR files in a given directory
# and concatenates them in a Java Classpath compatible way into a single string.
macro (create_classpath classPath_var dir)
file(GLOB_RECURSE ${classPath_var} FOLLOW_SYMLINKS "${dir}/*.jar")
# Make sure we use the correct path delimitter for the compiling system
string(REPLACE ";" "${PATH_DELIM_H}" ${classPath_var} "${${classPath_var}}")
endmacro (create_classpath classPath_var dir)
# Concatenates an arbritrary number of Java ClassPaths (may be empty).
function (concat_classpaths resultingCP_var)
set(${resultingCP_var} "")
foreach (cpPart ${ARGN})
set(${resultingCP_var} "${${resultingCP_var}}${cpPart}${PATH_DELIM_H}")
endforeach (cpPart)
string(REGEX REPLACE "${PATH_DELIM_H}\$" "" ${resultingCP_var} "${${resultingCP_var}}")
set(${resultingCP_var} "${${resultingCP_var}}" PARENT_SCOPE)
endfunction (concat_classpaths)
# Look for a manifest.mf file in a few specific sub-dirs.
# This could be done with a simple find_file call,
# but that strangely does not find the file under win32,
# so we use this workaround
function (find_manifest_file srcDir result_var)
set(manifestSubdirs
"/src/main/resources/META-INF/"
"/src/"
"/")
set(${result_var} "${result_var}-NOTFOUND")
if (CMAKE_HOST_WIN32)
foreach(subDir_var ${manifestSubdirs})
if (EXISTS "${srcDir}${subDir_var}manifest.mf")
set(${result_var} "${srcDir}${subDir_var}manifest.mf")
break()
endif (EXISTS "${srcDir}${subDir_var}manifest.mf")
endforeach(subDir_var)
else (CMAKE_HOST_WIN32)
find_file(${result_var}
NAMES "manifest.mf" "MANIFEST.MF"
PATHS "${srcDir}"
PATH_SUFFIXES ${manifestSubdirs}
NO_DEFAULT_PATH)
endif (CMAKE_HOST_WIN32)
set(${result_var} ${${result_var}} PARENT_SCOPE)
endfunction (find_manifest_file)
|