-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,267 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "Formats"] | ||
path = Formats | ||
url = https://github.com/horsicq/Formats | ||
[submodule "StaticScan"] | ||
path = StaticScan | ||
url = https://github.com/horsicq/StaticScan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 hors<[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
TEMPLATE = subdirs | ||
|
||
SUBDIRS += gui_source | ||
SUBDIRS += console_source |
Submodule StaticScan
added at
60f573
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# For additional build parameters | ||
CONFIG(debug, debug|release) { | ||
DESTDIR = ../build/debug | ||
} else { | ||
DESTDIR = ../build/release | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#!/bin/sh -x | ||
QT_PATH=$HOME/Qt5.6.3/5.6.3/gcc_64 | ||
RELEASE_VERSION=$(cat "release_version.txt") | ||
echo $RELEASE_VERSION | ||
SOURCE_PATH=$PWD | ||
|
||
BUILD_NAME=nfd_lin64_portable | ||
GUIEXE=nfd | ||
CONEXE=nfdc | ||
|
||
cd $SOURCE_PATH | ||
|
||
rm -rf build | ||
|
||
function makeproject | ||
{ | ||
cd $SOURCE_PATH/$1 | ||
|
||
$QT_PATH/bin/qmake $1.pro -spec linux-g++ | ||
make -f Makefile clean | ||
make -f Makefile | ||
|
||
rm -rf Makefile | ||
rm -rf Makefile.Release | ||
rm -rf Makefile.Debug | ||
rm -rf object_script.* | ||
|
||
cd $SOURCE_PATH | ||
} | ||
|
||
makeproject gui_source | ||
makeproject console_source | ||
|
||
mkdir -p release | ||
rm -rf release/$BUILD_NAME | ||
mkdir -p release/$BUILD_NAME | ||
mkdir -p release/$BUILD_NAME/base | ||
mkdir -p release/$BUILD_NAME/base/platforms | ||
|
||
cp -R $QT_PATH/plugins/platforms/libqxcb.so $SOURCE_PATH/release/$BUILD_NAME/base/platforms/ | ||
|
||
cp -R $SOURCE_PATH/build/release/nfd $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $SOURCE_PATH/build/release/nfdc $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
|
||
cp -R $QT_PATH/lib/libQt5Core.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libQt5Gui.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libQt5Widgets.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libQt5DBus.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libQt5XcbQpa.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libicui18n.so.56.1 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libicuuc.so.56.1 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
cp -R $QT_PATH/lib/libicudata.so.56.1 $SOURCE_PATH/release/$BUILD_NAME/base/ | ||
|
||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libQt5Core.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/libQt5Core.so.5 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libQt5Gui.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/libQt5Gui.so.5 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libQt5Widgets.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/libQt5Widgets.so.5 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libQt5DBus.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/libQt5DBus.so.5 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libQt5XcbQpa.so.5.6.3 $SOURCE_PATH/release/$BUILD_NAME/base/libQt5XcbQpa.so.5 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libicui18n.so.56.1 $SOURCE_PATH/release/$BUILD_NAME/base/libicui18n.so.56 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libicuuc.so.56.1 $SOURCE_PATH/release/$BUILD_NAME/base/libicuuc.so.56 | ||
mv $SOURCE_PATH/release/$BUILD_NAME/base/libicudata.so.56.1 $SOURCE_PATH/release/$BUILD_NAME/base/libicudata.so.56 | ||
|
||
echo "#!/bin/sh" >> release/$BUILD_NAME/nfd.sh | ||
echo "export LD_LIBRARY_PATH=\"./base:$LD_LIBRARY_PATH\"" >> release/$BUILD_NAME/nfd.sh | ||
echo "./base/nfd $*" >> release/$BUILD_NAME/nfd.sh | ||
|
||
echo "#!/bin/sh" >> release/$BUILD_NAME/nfdc.sh | ||
echo "export LD_LIBRARY_PATH=\"./base:$LD_LIBRARY_PATH\"" >> release/$BUILD_NAME/nfdc.sh | ||
echo "./base/nfdc $*" >> release/$BUILD_NAME/nfdc.sh | ||
|
||
chmod +x release/$BUILD_NAME/nfd.sh | ||
chmod +x release/$BUILD_NAME/nfdc.sh | ||
|
||
rm -rf $SOURCE_PATH/release/${BUILD_NAME}_${RELEASE_VERSION}.tar.gz | ||
rm -rf $SOURCE_PATH/release/${BUILD_NAME}_${RELEASE_VERSION}.tar | ||
|
||
cd release | ||
|
||
tar -cvf ${BUILD_NAME}_${RELEASE_VERSION}.tar $BUILD_NAME | ||
gzip --best ${BUILD_NAME}_${RELEASE_VERSION}.tar | ||
|
||
cd .. | ||
|
||
rm -rf release/$BUILD_NAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
#!/bin/sh -x | ||
QT_PATH=$HOME/Qt5.10.1/5.10.1/clang_64 | ||
RELEASE_VERSION=$(cat "release_version.txt") | ||
echo $RELEASE_VERSION | ||
SOURCE_PATH=$PWD | ||
|
||
BUILD_NAME=nfd_mac_portable | ||
GUIEXE=nfd | ||
CONEXE=nfdc | ||
|
||
cd $SOURCE_PATH | ||
|
||
rm -rf build | ||
|
||
function makeproject | ||
{ | ||
cd $SOURCE_PATH/$1 | ||
|
||
$QT_PATH/bin/qmake $1.pro -spec macx-clang CONFIG+=x86_64 | ||
make -f Makefile clean | ||
make -f Makefile | ||
|
||
rm -rf Makefile | ||
rm -rf Makefile.Release | ||
rm -rf Makefile.Debug | ||
rm -rf object_script.* | ||
|
||
cd $SOURCE_PATH | ||
} | ||
|
||
makeproject gui_source | ||
makeproject console_source | ||
|
||
mkdir -p release | ||
rm -rf release/$BUILD_NAME | ||
mkdir -p release/$BUILD_NAME | ||
|
||
cp -R $SOURCE_PATH/build/release/$GUIEXE.app $SOURCE_PATH/release/$BUILD_NAME | ||
cp -R $SOURCE_PATH/build/release/$CONEXE $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/MacOS/ | ||
mkdir $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/PlugIns | ||
|
||
function fixlibrary | ||
{ | ||
install_name_tool -change @rpath/$1.framework/Versions/5/$1 @executable_path/../Frameworks/$1.framework/Versions/5/$1 $2 | ||
} | ||
|
||
function fiximport | ||
{ | ||
fixlibrary QtWidgets $1 | ||
fixlibrary QtGui $1 | ||
fixlibrary QtCore $1 | ||
#fixlibrary QtDBus $1 | ||
fixlibrary QtPrintSupport $1 | ||
} | ||
|
||
function copylibrary | ||
{ | ||
mkdir $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks | ||
mkdir $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks/$1.framework | ||
mkdir $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks/$1.framework/Versions | ||
mkdir $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks/$1.framework/Versions/5 | ||
|
||
cp -R $QT_PATH/lib/$1.framework/Versions/5/$1 $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks/$1.framework/Versions/5 | ||
|
||
install_name_tool -id @executable_path/../Frameworks/$1.framework/Versions/5/$1 $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks/$1.framework/Versions/5/$1 | ||
fiximport $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/Frameworks/$1.framework/Versions/5/$1 | ||
} | ||
|
||
function copyplugin | ||
{ | ||
mkdir $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/PlugIns/$1/ | ||
cp -R $QT_PATH/plugins/$1/$2.dylib $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/PlugIns/$1/ | ||
|
||
install_name_tool -id @executable_path/../PlugIns/$1/$2.dylib $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/PlugIns/$1/$2.dylib | ||
fiximport $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/PlugIns/$1/$2.dylib | ||
} | ||
|
||
fiximport $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/MacOS/$GUIEXE | ||
fiximport $SOURCE_PATH/release/$BUILD_NAME/$GUIEXE.app/Contents/MacOS/$CONEXE | ||
|
||
copylibrary QtWidgets | ||
copylibrary QtGui | ||
copylibrary QtCore | ||
#copylibrary QtDBus | ||
copylibrary QtPrintSupport | ||
|
||
copyplugin platforms libqcocoa | ||
copyplugin platforms libqminimal | ||
copyplugin platforms libqoffscreen | ||
|
||
rm -rf $SOURCE_PATH/release/${BUILD_NAME}_${RELEASE_VERSION}.dmg | ||
hdiutil create -format UDBZ -quiet -srcfolder $SOURCE_PATH/release/$BUILD_NAME $SOURCE_PATH/release/${BUILD_NAME}_${RELEASE_VERSION}.dmg | ||
cd $SOURCE_PATH/release/ | ||
zip -r $SOURCE_PATH/release/${BUILD_NAME}_${RELEASE_VERSION}.zip ${BUILD_NAME} | ||
|
||
rm -rf $SOURCE_PATH/release/$BUILD_NAME | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
set VS_PATH="C:\Program Files (x86)\Microsoft Visual Studio 12.0" | ||
set SEVENZIP_PATH="C:\Program Files\7-Zip" | ||
set QT_PATH32="C:\Qt\5.6.3\msvc2013" | ||
|
||
set BUILD_NAME=nfd_win32_portable | ||
set SOURCE_PATH=%~dp0 | ||
mkdir %SOURCE_PATH%\build | ||
mkdir %SOURCE_PATH%\build\loader | ||
mkdir %SOURCE_PATH%\release | ||
set /p RELEASE_VERSION=<%SOURCE_PATH%\release_version.txt | ||
|
||
set QT_PATH=%QT_PATH32% | ||
set QT_SPEC=win32-msvc2013 | ||
call %VS_PATH%\VC\bin\vcvars32.bat | ||
set GUIEXE=nfd.exe | ||
set CONEXE=nfdc.exe | ||
set ZIP_NAME=nfd_win32_%RELEASE_VERSION% | ||
set RES_FILE=rsrc | ||
|
||
cd gui_source | ||
%QT_PATH%\bin\qmake.exe gui_source.pro -r -spec %QT_SPEC% "CONFIG+=release" | ||
|
||
nmake Makefile.Release clean | ||
nmake | ||
del Makefile | ||
del Makefile.Release | ||
del Makefile.Debug | ||
|
||
cd .. | ||
|
||
cd console_source | ||
%QT_PATH%\bin\qmake.exe console_source.pro -r -spec %QT_SPEC% "CONFIG+=release" | ||
|
||
nmake Makefile.Release clean | ||
nmake | ||
del Makefile | ||
del Makefile.Release | ||
del Makefile.Debug | ||
|
||
cd .. | ||
|
||
cd winloader_source | ||
|
||
cl.exe /c winloader.cpp | ||
Rc.exe /v %RES_FILE%.rc | ||
link.exe winloader.obj %RES_FILE%.res user32.lib kernel32.lib shell32.lib /SUBSYSTEM:WINDOWS /ENTRY:entry /OUT:%SOURCE_PATH%\build\loader\%GUIEXE% | ||
del /s winloader.obj | ||
del /s %RES_FILE%.res | ||
|
||
cd .. | ||
|
||
mkdir %SOURCE_PATH%\release\%BUILD_NAME% | ||
mkdir %SOURCE_PATH%\release\%BUILD_NAME%\base | ||
mkdir %SOURCE_PATH%\release\%BUILD_NAME%\base\plugins | ||
mkdir %SOURCE_PATH%\release\%BUILD_NAME%\base\plugins\platforms | ||
|
||
copy %SOURCE_PATH%\build\loader\%GUIEXE% %SOURCE_PATH%\release\%BUILD_NAME%\ | ||
copy %SOURCE_PATH%\build\release\%GUIEXE% %SOURCE_PATH%\release\%BUILD_NAME%\base\ | ||
copy %SOURCE_PATH%\build\release\%CONEXE% %SOURCE_PATH%\release\%BUILD_NAME%\base\ | ||
copy %QT_PATH%\bin\Qt5Widgets.dll %SOURCE_PATH%\release\%BUILD_NAME%\base\ | ||
copy %QT_PATH%\bin\Qt5Gui.dll %SOURCE_PATH%\release\%BUILD_NAME%\base\ | ||
copy %QT_PATH%\bin\Qt5Core.dll %SOURCE_PATH%\release\%BUILD_NAME%\base\ | ||
copy %QT_PATH%\plugins\platforms\qwindows.dll %SOURCE_PATH%\release\%BUILD_NAME%\base\plugins\platforms\ | ||
|
||
cd %SOURCE_PATH%\release | ||
if exist %ZIP_NAME%.zip del %ZIP_NAME%.zip | ||
%SEVENZIP_PATH%\7z.exe a %ZIP_NAME%.zip %BUILD_NAME%\* | ||
rmdir /s /q %SOURCE_PATH%\release\%BUILD_NAME% | ||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
QT += core | ||
QT -= gui | ||
|
||
include(../build.pri) | ||
|
||
CONFIG += c++11 | ||
|
||
TARGET = nfdc | ||
CONFIG += console | ||
CONFIG -= app_bundle | ||
|
||
TEMPLATE = app | ||
|
||
SOURCES += \ | ||
main_console.cpp | ||
|
||
|
||
!contains(XCONFIG, staticscan) { | ||
XCONFIG += staticscan | ||
include(../StaticScan/staticscan.pri) | ||
} | ||
|
||
# The following define makes your compiler emit warnings if you use | ||
# any feature of Qt which as been marked deprecated (the exact warnings | ||
# depend on your compiler). Please consult the documentation of the | ||
# deprecated API in order to know how to port your code away from it. | ||
DEFINES += QT_DEPRECATED_WARNINGS | ||
|
||
# You can also make your code fail to compile if you use deprecated APIs. | ||
# In order to do so, uncomment the following line. | ||
# You can also select to disable deprecated APIs only up to a certain version of Qt. | ||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 |
Oops, something went wrong.