Skip to content

Commit

Permalink
rename configure.exe => configureapp.exe
Browse files Browse the repository at this point in the history
now that the bat file is responsible for displaying the help in addition
to bootstrapping configure, the exe file should not shadow it any more.

amends c027cff.

Change-Id: I5c8a52f59ff455575e646fae55cd214db98a3736
Reviewed-by: Jake Petroules <[email protected]>
  • Loading branch information
ossilator committed Oct 4, 2016
1 parent 9e04879 commit 5a4d469
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ src/3rdparty/webkit/includes2.txt
# generated files in configure.exe bootstrapping
tools/configure/configure.intermediate.manifest
tools/configure/configure_pch.pch
/configure.exe
/configureapp.exe

# Symlinks generated by configure
tools/qvfb/qvfbhdr.h
Expand Down
2 changes: 1 addition & 1 deletion configure.bat
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ if errorlevel 1 (cd ..\.. & exit /b 1)
cd ..\..

:conf
configure.exe -srcdir %QTSRC% %ARGS%
configureapp.exe -srcdir %QTSRC% %ARGS%
goto exit

:help
Expand Down
2 changes: 1 addition & 1 deletion tools/configure/Makefile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LINK = g++
LFLAGS = -Wl,-subsystem,console -mthreads
LIBS = -lole32 -ladvapi32 -luuid

TARGET = ../../configure.exe
TARGET = ../../configureapp.exe

OBJECTS = \
main.o \
Expand Down
2 changes: 1 addition & 1 deletion tools/configure/Makefile.win32
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ LINK = link
LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST /MANIFESTFILE:"configure.intermediate.manifest"
LIBS = ole32.lib advapi32.lib shell32.lib

TARGET = ..\..\configure.exe
TARGET = ..\..\configureapp.exe

OBJECTS = \
main.obj \
Expand Down
2 changes: 1 addition & 1 deletion tools/configure/configure.pro
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGET = configure
TARGET = configureapp
DESTDIR = $$PWD/../.. # build directly in source dir

CONFIG += console flat stl rtti_off
Expand Down

0 comments on commit 5a4d469

Please sign in to comment.