Skip to content
Snippets Groups Projects
Commit 3f673f2e authored by Aleksandr Vodianov's avatar Aleksandr Vodianov
Browse files

add cleaning

parent 61e86cae
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,6 @@ cd $wd ...@@ -10,7 +10,6 @@ cd $wd
export_variables "./prod_build/windows/conf/*" export_variables "./prod_build/windows/conf/*"
IFS=" " IFS=" "
for lib in $LIBS; do for lib in $LIBS; do
new_lib=$(echo "$lib" | tr '[:upper:]' '[:lower:]') new_lib=$(echo "$lib" | tr '[:upper:]' '[:lower:]')
...@@ -24,9 +23,7 @@ for lib in $LIBS; do ...@@ -24,9 +23,7 @@ for lib in $LIBS; do
sed -i "s/$lib/$new_lib/g" python-cellframe/cellframe-sdk/dap-sdk/net/server/http_server/CMakeLists.txt sed -i "s/$lib/$new_lib/g" python-cellframe/cellframe-sdk/dap-sdk/net/server/http_server/CMakeLists.txt
done done
mkdir build && cd build && \ mkdir build && cd build && \
x86_64-w64-mingw32.static-cmake .. && make -j$(nproc) && \ x86_64-w64-mingw32.static-cmake .. && make -j$(nproc) && \
cp -f cellframe-node*.exe $DESTDIR || echo "$PATH error $?" && exit $? mv cellframe-node*.exe $DESTDIR && make distclean && cd .. && rm build || echo "error $?" && exit $?
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