@@ -51,7 +51,11 @@ endif()
51
51
# Pull in definitions for omr_add_hookgen and omr_add_tracegen
52
52
# these will be in omr/cmake/modules
53
53
include (OmrHookgen)
54
- set (OMR_TRACE_ROOT "${CMAKE_CURRENT_SOURCE_DIR} " )
54
+ if (J9VM_IS_NON_STAGING)
55
+ set (OMR_TRACE_ROOT "${CMAKE_CURRENT_BINARY_DIR} " )
56
+ else ()
57
+ set (OMR_TRACE_ROOT "${CMAKE_CURRENT_SOURCE_DIR} " )
58
+ endif ()
55
59
include (OmrTracegen)
56
60
57
61
include (cmake/build_tags.cmake)
@@ -84,6 +88,14 @@ set(OMR_INSTALL_BIN_DIR "${j9vm_SOURCE_DIR}" CACHE PATH "")
84
88
set (OMR_INSTALL_LIB_DIR "${j9vm_SOURCE_DIR} " CACHE PATH "" )
85
89
set (OMR_INSTALL_ARCHIVE_DIR "${j9vm_SOURCE_DIR} /lib" CACHE PATH "" )
86
90
91
+ # if this is a non-staging build, we want to put binaries in current source dir
92
+ if (J9VM_IS_NON_STAGING)
93
+ set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR} " )
94
+ set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR} " )
95
+ # we also want to set the RPATH properly
96
+ set (CMAKE_BUILD_WITH_INSTALL_RPATH TRUE )
97
+ endif ()
98
+
87
99
# Generic configuration for omr
88
100
include (cmake/omr_config.cmake)
89
101
@@ -122,7 +134,7 @@ add_custom_target(j9vm_hookgen
122
134
)
123
135
124
136
# Generate NLS headers
125
- if (J9VM_GEN_NLS )
137
+ if (J9VM_IS_NON_STAGING )
126
138
add_custom_command (
127
139
OUTPUT "${CMAKE_CURRENT_BINARY_DIR} /java.properties"
128
140
DEPENDS j9nls
@@ -160,6 +172,12 @@ add_custom_target(j9vm_m4gen
160
172
"${CMAKE_CURRENT_BINARY_DIR} /j9vm/generated.h"
161
173
)
162
174
175
+ if (J9VM_IS_NON_STAGING)
176
+ add_custom_target (copy_default_options ALL
177
+ COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR} /options.default" "${CMAKE_CURRENT_BINARY_DIR} /options.default"
178
+ )
179
+ endif ()
180
+
163
181
###
164
182
### Helper interface libraries
165
183
###
@@ -174,9 +192,10 @@ target_include_directories(j9vm_interface
174
192
${J9VM_OMR_DIR} /include_core
175
193
${CMAKE_CURRENT_BINARY_DIR} /omr
176
194
${CMAKE_CURRENT_BINARY_DIR}
195
+ ${CMAKE_BINARY_DIR}
177
196
)
178
197
179
- if (J9VM_GEN_NLS )
198
+ if (J9VM_IS_NON_STAGING )
180
199
target_include_directories (j9vm_interface INTERFACE ${CMAKE_CURRENT_BINARY_DIR} /nls)
181
200
else ()
182
201
target_include_directories (j9vm_interface INTERFACE nls)
0 commit comments