Skip to content

Commit

Permalink
Merge pull request #28 from Lindacoin/windowsbuild
Browse files Browse the repository at this point in the history
Windows Version V1.0.1.2
  • Loading branch information
nisanb authored Mar 3, 2018
2 parents 807ace7 + 4516a02 commit bbca206
Show file tree
Hide file tree
Showing 23 changed files with 28,873 additions and 93 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
build/
src/qt/locale/*.qm
/bin/

release/
debug/
25 changes: 25 additions & 0 deletions .qmake.stash
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
QMAKE_CXX.INCDIRS = \
C:/msys32/mingw32/include/c++/7.3.0 \
C:/msys32/mingw32/include/c++/7.3.0/i686-w64-mingw32 \
C:/msys32/mingw32/include/c++/7.3.0/backward \
C:/msys32/mingw32/lib/gcc/i686-w64-mingw32/7.3.0/include \
C:/msys32/mingw32/include \
C:/msys32/mingw32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed \
C:/msys32/mingw32/i686-w64-mingw32/include \
/mingw32/include
QMAKE_CXX.LIBDIRS = \
C \
/msys32/mingw32/lib/gcc/i686-w64-mingw32/7.3.0/;C \
/msys32/mingw32/lib/gcc/;C \
/msys32/mingw32/i686-w64-mingw32/lib/;C \
/msys32/mingw32/lib/;C \
/msys32/mingw32/lib
QMAKE_CXX.QT_COMPILER_STDCXX = 201402L
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 7
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 3
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
QMAKE_CXX.COMPILER_MACROS = \
QT_COMPILER_STDCXX \
QMAKE_GCC_MAJOR_VERSION \
QMAKE_GCC_MINOR_VERSION \
QMAKE_GCC_PATCH_VERSION
18 changes: 16 additions & 2 deletions Linda-qt.pro
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,25 @@ greaterThan(QT_MAJOR_VERSION, 4) {
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
}

DEPS_PATH = /c/deps
windows {
SECP256K1_LIB_PATH = src/secp256k1/.libs
SECP256K1_INCLUDE_PATH = src/secp256k1/include
MINIUPNPC_LIB_PATH = $$DEPS_PATH/miniupnpc-1.9
MINIUPNPC_INCLUDE_PATH = $$DEPS_PATH/miniupnpc-1.9
BOOST_LIB_PATH = $$DEPS_PATH/boost_1_58_0/stage/lib
BOOST_INCLUDE_PATH = $$DEPS_PATH/boost_1_58_0
BDB_LIB_PATH = $$DEPS_PATH/db-4.8.30.NC/build_unix
BDB_INCLUDE_PATH = $$DEPS_PATH/db-4.8.30.NC/build_unix
#OPENSSL_LIB_PATH = $$DEPS_PATH/
#OPENSSL_INCLUDE_PATH = $$DEPS_PATH/
}
linux {
SECP256K1_LIB_PATH = /usr/local/lib
SECP256K1_INCLUDE_PATH = /usr/local/include
SECP256K1_LIB_PATH = src/secp256k1/.libs
SECP256K1_INCLUDE_PATH = src/secp256k1/include
}


# for boost 1.37, add -mt to the boost libraries
# use: qmake BOOST_LIB_SUFFIX=-mt
# for boost thread win32 with _win32 sufix
Expand Down
600 changes: 600 additions & 0 deletions Makefile

Large diffs are not rendered by default.

Loading

0 comments on commit bbca206

Please sign in to comment.