forked from eclipse-omr/omr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
87 lines (73 loc) · 3.19 KB
/
CMakeLists.txt
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
###############################################################################
# Copyright (c) 2017, 2019 IBM Corp. and others
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License 2.0 which accompanies this
# distribution and is available at http://eclipse.org/legal/epl-2.0
# or the Apache License, Version 2.0 which accompanies this distribution
# and is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# This Source Code may also be made available under the following Secondary
# Licenses when the conditions for such availability set forth in the
# Eclipse Public License, v. 2.0 are satisfied: GNU General Public License,
# version 2 with the GNU Classpath Exception [1] and GNU General Public
# License, version 2 with the OpenJDK Assembly Exception [2].
#
# [1] https://www.gnu.org/software/classpath/license.html
# [2] http://openjdk.java.net/legal/assembly-exception.html
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
###############################################################################
set(OMR_GC_GLUE_TARGET "omr_example_gc_glue" CACHE STRING "The gc glue target, must be interface library" FORCE)
set(OMR_UTIL_GLUE_TARGET "omr_example_util_glue" CACHE STRING "The util glue target, must be interface library" FORCE)
set(OMR_RAS_GLUE_TARGET "omr_example_ras_glue" CACHE STRING "The ras glue target, must be interface library" FORCE)
set(OMR_CORE_GLUE_TARGET "omr_example_core_glue" CACHE STRING "The core glue target, must be and interface library" FORCE)
add_library(omr_example_gc_glue INTERFACE)
target_sources(omr_example_gc_glue INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/CollectorLanguageInterfaceImpl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/CompactSchemeFixupObject.cpp
${CMAKE_CURRENT_SOURCE_DIR}/ConcurrentMarkingDelegate.cpp
${CMAKE_CURRENT_SOURCE_DIR}/EnvironmentDelegate.cpp
${CMAKE_CURRENT_SOURCE_DIR}/FrequentObjectsStats.cpp
${CMAKE_CURRENT_SOURCE_DIR}/GlobalCollectorDelegate.cpp
${CMAKE_CURRENT_SOURCE_DIR}/MarkingDelegate.cpp
${CMAKE_CURRENT_SOURCE_DIR}/ObjectIterator.cpp
${CMAKE_CURRENT_SOURCE_DIR}/ObjectModelDelegate.cpp
${CMAKE_CURRENT_SOURCE_DIR}/StartupManagerImpl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/VerboseManagerImpl.cpp
)
if(OMR_GC_MODRON_SCAVENGER)
target_sources(omr_example_gc_glue
INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/ScavengerDelegate.cpp
)
endif(OMR_GC_MODRON_SCAVENGER)
target_link_libraries(omr_example_gc_glue
INTERFACE
omr_example_base
)
add_library(omr_example_util_glue INTERFACE)
target_sources(omr_example_util_glue INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/UtilGlue.c
)
target_link_libraries(omr_example_util_glue
INTERFACE
omr_example_base
)
add_library(omr_example_ras_glue INTERFACE)
target_sources(omr_example_ras_glue INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/Profiling.c
)
target_link_libraries(omr_example_ras_glue
INTERFACE
omr_example_base
)
add_library(omr_example_core_glue INTERFACE)
target_sources(omr_example_core_glue INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/LanguageVMGlue.c
${CMAKE_CURRENT_SOURCE_DIR}/omrExampleVM.cpp
)
target_link_libraries(omr_example_core_glue
INTERFACE
omr_example_base
)