aboutsummaryrefslogtreecommitdiff
path: root/plugin/src/sbt-test/sbt-jni/multiclasses/native1/src/CMakeLists.txt
blob: 1539ec283e73f08b625ec12bb968784489bcbe52 (plain) (blame)
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
################################################################
# A minimal CMake file that is compatible with sbt-jni         #
#                                                              #
# All settings required by sbt-jni have been marked so, please #
# add/modify/remove settings to build your specific library.   #
################################################################

cmake_minimum_required(VERSION 2.6)

# Define project and related variables
#
project (demo)

# Set versions and library name
# (required by sbt-jni) please use semantic versioning
#
set (VERSION_MAJOR 0)
set (VERSION_MINOR 0)
set (VERSION_PATCH 0)
# (required by sbt-jni) major version will always be appended to library name
set (LIB_NAME ${CMAKE_PROJECT_NAME}${VERSION_MAJOR})

# Command-line options
#
# (set by sbt-jni)
set (LIB_INSTALL_DIR lib CACHE PATH "Path in which to install libraries (equivalent to Autoconf --libdir).")
# (set by sbt-jni)
set (LIB_ENABLE_MINOR_VERSIONS ON CACHE BOOLEAN "Build libraries with minor and patch versions appended.")

# Setup JNI
find_package(JNI REQUIRED)
if (JNI_FOUND)
    message (STATUS "JNI include directories: ${JNI_INCLUDE_DIRS}")
endif()

# Include directories
include_directories(.)
include_directories(../../core/target/native/include)
include_directories(${JNI_INCLUDE_DIRS})

# Setup main shared library
file(GLOB LIB_SRC
  "*.c"
  "*.cpp"
)
add_library(${LIB_NAME} SHARED ${LIB_SRC})

# By default, in a regular build, minor and patch versions are added to the generated files.
# When built through sbt-jni however, LIB_ENABLE_MINOR_VERSIONS is deactivated and only a
# major-versioned library file is built.
if (LIB_ENABLE_MINOR_VERSIONS)
   set_target_properties(
	${LIB_NAME}
	PROPERTIES
	VERSION 0.${VERSION_MINOR}.${VERSION_PATCH} # major version always 0, it is included in library name
	SOVERSION 0
   )
endif()

# Installation targets
install(TARGETS ${LIB_NAME} LIBRARY DESTINATION ${LIB_INSTALL_DIR})