GUI+PROJECT: ogdf in release script
This commit is contained in:
parent
d3d986a83d
commit
2ac86ceaa4
|
|
@ -35,6 +35,7 @@ copy bin\x32\TitanEngine.dll %RELEASEDIR%\bin_base\x32\TitanEngine.dll
|
|||
copy bin\x32\XEDParse.dll %RELEASEDIR%\bin_base\x32\XEDParse.dll
|
||||
copy bin\x32\yara.dll %RELEASEDIR%\bin_base\x32\yara.dll
|
||||
copy bin\x32\snowman.dll %RELEASEDIR%\bin_base\x32\snowman.dll
|
||||
copy bin\x32\ogdf.dll %RELEASEDIR%\bin_base\x32\ogdf.dll
|
||||
copy bin\x64\x64_bridge.dll %RELEASEDIR%\bin_base\x64\x64_bridge.dll
|
||||
copy bin\x64\x64_dbg.dll %RELEASEDIR%\bin_base\x64\x64_dbg.dll
|
||||
copy bin\x64\capstone.dll %RELEASEDIR%\bin_base\x64\capstone.dll
|
||||
|
|
@ -48,6 +49,7 @@ copy bin\x64\TitanEngine.dll %RELEASEDIR%\bin_base\x64\TitanEngine.dll
|
|||
copy bin\x64\XEDParse.dll %RELEASEDIR%\bin_base\x64\XEDParse.dll
|
||||
copy bin\x64\yara.dll %RELEASEDIR%\bin_base\x64\yara.dll
|
||||
copy bin\x64\snowman.dll %RELEASEDIR%\bin_base\x64\snowman.dll
|
||||
copy bin\x64\ogdf.dll %RELEASEDIR%\bin_base\x64\ogdf.dll
|
||||
|
||||
echo help
|
||||
|
||||
|
|
|
|||
|
|
@ -11,15 +11,15 @@
|
|||
OGDF_INCLUDE_DIR = C:/OGDF/include
|
||||
|
||||
!contains(QMAKE_HOST.arch, x86_64) {
|
||||
X64_BIN_DIR = ../../bin/x32 # Relative BIN path, 32-bit
|
||||
X64_GEN_DIR = ../gui_build/out32 # QMake temporary generated files, placed inside the build folder. (OBJ, UI, MOC)
|
||||
X64_BIN_DIR = ../../bin/x32 # Relative BIN path, 32-bit
|
||||
X64_GEN_DIR = ../gui_build/out32 # QMake temporary generated files, placed inside the build folder. (OBJ, UI, MOC)
|
||||
OGDF_BIN_DIR = C:/OGDF/Win32/Release # OGDF
|
||||
TARGET = x32gui # Build x32gui
|
||||
TARGET = x32gui # Build x32gui
|
||||
} else {
|
||||
X64_BIN_DIR = ../../bin/x64 # Relative BIN path, 64-bit
|
||||
X64_GEN_DIR = ../gui_build/out64 # QMake temporary generated files, placed inside the build folder. (OBJ, UI, MOC)
|
||||
X64_BIN_DIR = ../../bin/x64 # Relative BIN path, 64-bit
|
||||
X64_GEN_DIR = ../gui_build/out64 # QMake temporary generated files, placed inside the build folder. (OBJ, UI, MOC)
|
||||
OGDF_BIN_DIR = C:/OGDF/x64/Release # OGDF
|
||||
TARGET = x64gui # Build x64gui
|
||||
TARGET = x64gui # Build x64gui
|
||||
}
|
||||
|
||||
##
|
||||
|
|
@ -276,11 +276,11 @@ LIBS += -luser32
|
|||
LIBS += -L"$$PWD/../dbg/capstone/" -lcapstone_x86
|
||||
LIBS += -L"$$PWD/Src/ThirdPartyLibs/snowman/" -lsnowman_x86
|
||||
LIBS += -L"$${X64_BIN_DIR}/" -lx32bridge -lcapstone_wrapper
|
||||
LIBS += -L"$${OGDF_BIN_DIR}/" -lcoin -logdf
|
||||
LIBS += -L"$${OGDF_BIN_DIR}/" -logdf
|
||||
} else {
|
||||
# Windows x64 (64bit) specific build
|
||||
LIBS += -L"$$PWD/../dbg/capstone/" -lcapstone_x64
|
||||
LIBS += -L"$$PWD/Src/ThirdPartyLibs/snowman/" -lsnowman_x64
|
||||
LIBS += -L"$${X64_BIN_DIR}/" -lx64bridge -lcapstone_wrapper
|
||||
LIBS += -L"$${OGDF_BIN_DIR}/" -lcoin -logdf
|
||||
LIBS += -L"$${OGDF_BIN_DIR}/" -logdf
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue