diff --git a/alt/g++/.gitignore b/alt/g++/.gitignore new file mode 100644 index 0000000..7b02e68 --- /dev/null +++ b/alt/g++/.gitignore @@ -0,0 +1,76 @@ +# This file is used to ignore files which are generated +# ---------------------------------------------------------------------------- + +*~ +*.autosave +*.a +*.core +*.moc +*.o +*.obj +*.orig +*.rej +*.so +*.so.* +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc +/.qmake.cache +/.qmake.stash + +# qtcreator generated files +*.pro.user* + +# xemacs temporary files +*.flc + +# Vim temporary files +.*.swp + +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +# -------- +*.dll +*.exe + +#Own adds: +g++/* + diff --git a/alt/g++/g++.zip b/alt/g++/g++.zip new file mode 100644 index 0000000..4dfdf60 Binary files /dev/null and b/alt/g++/g++.zip differ diff --git a/alt/g++/make32Bit.sh b/alt/g++/make32Bit.sh new file mode 100755 index 0000000..3f18a24 --- /dev/null +++ b/alt/g++/make32Bit.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +i686-w64-mingw32-g++ ./*.h ./*.cpp -o S_New4_x32.exe -DCURL_STATICLIB -static-libgcc -static-libstdc++ -lpthread -lcurl -lwldap32 -lws2_32 -std=c++11 +sleep 3 diff --git a/alt/g++/make64Bit.sh b/alt/g++/make64Bit.sh new file mode 100755 index 0000000..4d99f18 --- /dev/null +++ b/alt/g++/make64Bit.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +#x86_64-w64-mingw32-g++ ./*.h ./*.cpp -o S_New4_x64.exe -DCURL_STATICLIB -static-libgcc -static-libstdc++ -lpthread -lcurl -lwldap32 -lws2_32 -std=c++11 +x86_64-w64-mingw32-g++ ./*.h ./*.cpp -o S_New4_x64.exe -static-libgcc -static-libstdc++ -lpthread -lcurl -lws2_32 -std=c++11 +sleep 3 +