File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ if (${WITH_PARMYS})
79
79
80
80
# Synlig integration (manages Surelog and UHDM internally)
81
81
82
- set (SYNLIG_PREFIX_DIR "${CMAKE_BINARY_DIR} /synlig" )
82
+ set (SYNLIG_PREFIX_DIR "${CMAKE_CURRENT_SOURCE_DIR} /synlig" )
83
+ set (SYNLIG_BINARY_DIR "${SYNLIG_PREFIX_DIR} /build" )
83
84
set (SYNLIG_SOURCE_DIR "${SYNLIG_PREFIX_DIR} /src/synlig" )
84
85
85
86
# Debug paths to ensure correctness
@@ -99,13 +100,13 @@ if (${WITH_PARMYS})
99
100
# Corrected install directory
100
101
SOURCE_DIR "${SYNLIG_SOURCE_DIR} "
101
102
BUILD_IN_SOURCE FALSE
102
- INSTALL_DIR "${CMAKE_BINARY_DIR} /synlig_install_exe "
103
+ INSTALL_DIR "${SYNLIG_BINARY_DIR} "
103
104
104
105
# Ensure submodules are synced (CI sometimes skips this)
105
106
UPDATE_COMMAND git submodule update --init --recursive
106
107
107
108
# Build and install correctly
108
- BUILD_COMMAND ${MAKE_PROGRAM} -C ${SYNLIG_SOURCE_DIR} install DESTDIR=${CMAKE_BINARY_DIR}/synlig_install_exe -j${PROCESSOR_COUNT}
109
+ BUILD_COMMAND ${MAKE_PROGRAM} -C ${SYNLIG_SOURCE_DIR} install DESTDIR=${SYNLIG_BINARY_DIR} -j${PROCESSOR_COUNT}
109
110
INSTALL_COMMAND ""
110
111
CONFIGURE_COMMAND ""
111
112
You can’t perform that action at this time.
0 commit comments