###############################################################################
# Copyright IBM Corp. and others 2017
#
# 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 https://www.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] https://openjdk.org/legal/assembly-exception.html
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
###############################################################################

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)

omr_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
)

omr_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
)

omr_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
)

omr_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
)
