Skip to content

Commit 26bf39b

Browse files
Merge pull request #1773 from mgaudet/ModuleCOmpilerSupport
Convert Compiler Support CMake file to Module
2 parents 6a8ccfd + 0db4bc5 commit 26bf39b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

cmake/compiler_support.cmake cmake/modules/OmrCompilerSupport.cmake

+7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@
1919
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
2020
#############################################################################
2121

22+
# Include once
23+
if(OMR_COMPILER_SUPPORT_)
24+
return()
25+
endif()
26+
set(OMR_COMPILER_SUPPORT_ 1)
27+
28+
2229
# This file contains a number of support pieces required to build the compiler
2330
# component.
2431
#

fvtest/compilertest/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
2020
###############################################################################
2121

22-
include(../../cmake/compiler_support.cmake)
22+
include(OmrCompilerSupport)
2323

2424
set(COMPILERTEST_FILES
2525
ilgen/BinaryOpIlInjector.cpp

jitbuilder/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
2121
###############################################################################
2222

23-
include(../cmake/compiler_support.cmake)
23+
include(OmrCompilerSupport)
2424

2525

2626
# JitBuilder Files

0 commit comments

Comments
 (0)