Skip to content
Snippets Groups Projects
Commit dc8ec909 authored by dpuzyrkov's avatar dpuzyrkov
Browse files

[*] some build improvements

parent f9dcfa08
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,7 @@ cd ${BUILD_DIR}/build
#debug out
echo "$CMAKE ${BUILD_OPTIONS[@]}"
"${CMAKE[@]}" ../../ ${BUILD_OPTIONS[@]}
"${MAKE[@]}"
export INSTALL_ROOT=${BUILD_DIR}/dist
"${CMAKE[@]}" ${HERE}/../ ${BUILD_OPTIONS[@]}
"${MAKE[@]}" -j$(nproc)
"${MAKE[@]}" install DESTDIR=${INSTALL_ROOT}
......@@ -53,6 +53,15 @@ reconfigure|configure)
db_go || true
fi
db_input critical cellframe-node/mileena_enabled || true
db_go || true
db_get cellframe-node/mileena_enabled
if [ "$RET" = "true" ]; then
db_input critical cellframe-node/mileena_node_type || true
db_go || true
fi
db_input critical cellframe-node/enable_python_plugins || true
db_go || true
......
......@@ -20,12 +20,13 @@ then
exit 255
fi
#qmake command
CMAKE=(${MXE_ROOT}/usr/bin/x86_64-w64-mingw32.static-cmake)
#cmake command
#mxe install prefix if configured by mxe, need to change it
CMAKE=(${MXE_ROOT}/usr/bin/x86_64-w64-mingw32.static-cmake )
export PATH=${MXE_ROOT}/usr/bin:$PATH
#everything else can be done by default make
MAKE=(make)
echo "Windows target"
echo "CMAKE=${CMAKE[@]}"
echo "MAKE=${MAKE[@]}"
\ No newline at end of file
echo "MAKE=${MAKE[@]}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment