Comment # 2
on bug 10963
from Xiaochuan Sun
I attached my compilation setting. Is there anything wrong? I just install
many programs to D disk instead of C disk but I have added them into $PATH.
my compilation environment configuration:
@echo off
set CYGWIN_PATH=D:\cygwin\bin
set QT5_BIN=D:\Qt\Qt5.4.0\5.4\msvc2013_opengl\bin
set MSVC_BIN="D:\Program Files\Microsoft SDKs\Windows\v7.1\Bin"
set VC_2013="D:\Program Files\Microsoft Visual Studio 12.0\VC\bin"
if "%1" == "" goto x86
if /i %1 == x86 goto x86
if /i %1 == x64 goto x64
goto usage
:usage
echo Error in script usage. The correct usage is:
echo %0 [option]
echo where [option] is: x86 ^| x64
echo:
echo For example:
echo %0 x86
goto :eof
:x86
echo Adding things to the path...
set PATH=%PATH%;%CYGWIN_PATH%;%QT5_BIN%;%VC_2013%
:: to include the win7 SDK directory which has win32.mak
set INCLUDE=%INCLUDE%;D:\Program Files\Microsoft SDKs\Windows\v7.1\Include;
set WIRESHARK_TARGET_PLATFORM=win32
call %VC_2013%\vcvars32.bat
goto :eof
config.nmake
=======================================================
WIRESHARK_LIB_DIR=D:\$(PROGRAM_NAME)-$(WIRESHARK_TARGET_PLATFORM)-libs
PROGRAM_FILES=D:\Program Files
MSVC_VARIANT=MSVC2013EE
QT5_BASE_DIR=D:\Qt\Qt5.4.0\5.4\msvc2013_opengl
You are receiving this mail because:
- You are watching all bug changes.