Skip to content

Commit

Permalink
Merge pull request #78 from Nexusoft/2.4.6
Browse files Browse the repository at this point in the history
2.4.6 Merge to Master
  • Loading branch information
bibbityjibbity committed Jul 7, 2018
2 parents f83c401 + b02470b commit 166ae4c
Show file tree
Hide file tree
Showing 161 changed files with 18,231 additions and 18,285 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
Nexus Core - 0.2.4.5
Nexus Core - 0.2.4.6
=====================================

nex·usˈneksəs' : a connection or series of connections linking two or more things.
Expand Down
6 changes: 3 additions & 3 deletions makefile.cli
Expand Up @@ -283,7 +283,7 @@ CXXFLAGS+= -mthreads \
$(INCLUDEPATHS)

#set -std=c++ for all but c compiling
CFLAGS:= $(CXXFLGS)
CFLAGS:= $(CXXFLAGS)
CXXFLAGS+=-std=c++11

#OS Specific Targets and instructions
Expand Down Expand Up @@ -363,7 +363,7 @@ CXXFLAGS+= -mmacosx-version-min=10.10 \
$(INCLUDEPATHS)

#set -std=c++ for all but c compiling
CFLAGS:= $(CXXFLGS)
CFLAGS:= $(CXXFLAGS)
CXXFLAGS+=-std=c++11

#OS Specific Targets and instructions
Expand Down Expand Up @@ -488,7 +488,7 @@ CXXFLAGS+= -O3 \
$(INCLUDEPATHS)

#set -std=c++ for all but c compiling
CFLAGS:= $(CXXFLGS)
CFLAGS:= $(CXXFLAGS)
CXXFLAGS+=-std=c++11

#OS Specific Targets and instructions
Expand Down
10 changes: 5 additions & 5 deletions nexus-qt.pro
Expand Up @@ -3,9 +3,9 @@ TARGET = nexus-qt
VERSION = 0.1.0.0
INCLUDEPATH += src src/core src/hash src/json src/net src/qt src/util src/wallet src/LLD src/LLP
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
CONFIG += no_include_pwd optimize_full
CONFIG += no_include_pwd optimize_full c++11
greaterThan(QT_MAJOR_VERSION, 4) {
QT += uitools
QT += uitools widgets
}
OBJECTS_DIR = build/obj
MOC_DIR = build/moc
Expand Down Expand Up @@ -149,7 +149,7 @@ contains(RELEASE, 1) {
#Static Configuration
win32:CONFIG += STATIC

win32:QMAKE_LFLAGS += -Wl,--dynamicbase -Wl,--nxcompat -static -m64 -std=c++11 -static-libgcc -static-libstdc++
win32:QMAKE_LFLAGS += -Wl,--dynamicbase -Wl,--nxcompat -static -static-libgcc -static-libstdc++
!win32:!macx {
# Linux: static link
LIBS += -Wl,-Bstatic
Expand Down Expand Up @@ -215,7 +215,7 @@ contains(NEXUS_NEED_QT_PLUGINS, 1) {

!macx:QMAKE_LFLAGS += -s
QMAKE_CFLAGS += -s
QMAKE_CXXFLAGS += -s -std=c++11 -D_FORTIFY_SOURCE=2 -fpermissive
QMAKE_CXXFLAGS += -s -D_FORTIFY_SOURCE=2 -fpermissive
QMAKE_CXXFLAGS_WARN_ON = -Wall -Wextra -Wformat -Wformat-security -Wno-invalid-offsetof -Wno-sign-compare -Wno-unused-parameter
!macx {
QMAKE_CXXFLAGS_WARN_ON += -fdiagnostics-show-option
Expand Down Expand Up @@ -505,7 +505,7 @@ contains(ARCH_TEST, ARCH) {
!build_pass:message("Finishing up... Type 'make' to start compiling when finished")
#Ending makefile text
complete.target= complete
win32:complete.commands= { echo -e '\nFinished Building nexus-qt.exe\n'; } 2> /dev/null
win32:complete.commands= @echo '' && echo 'Finished Building nexus-qt.exe' && echo ''
macx:complete.commands= { echo ' '; echo 'Finished building nexus-qt.app'; echo ' '; } 2> /dev/null
!win32:!macx:complete.commands= { echo -e '\nFinished Building nexus-qt\n'; } 2> /dev/null
QMAKE_EXTRA_TARGETS+= complete
Expand Down

0 comments on commit 166ae4c

Please sign in to comment.