Windows Qt Makefile


Summary This topic provides a template Windows Qt Makefile for developers to use as a starting point.

# Example Makefile for ArcEngine C++ Programming with Qt on Windows

#
# The PROGRAM macro defines the name of the program or project. It
# allows the program name to be changed by editing in only one
# location
#

PROGRAM = qt_sample

#
# The INCLUDEDIRS macro contains a list of include directories
# to pass to the compiler so it can find necessary header files.
#
# The LIBDIRS macro contains a list of library directories
# to pass to the linker so it can find necessary libraries.
#
# The LIBS macro contains a list of libraries that the the
# executable must be linked against.
#

INCLUDEDIRS = \
/I "C:\Program Files\ArcGIS\DeveloperKit10.0\include\CPPAPI" \
/I "C:\Program Files\ArcGIS\Engine10.0\com" \
/I$(QTDIR)\include

LIBDIRS = \
/LIBPATH:"C:\Program Files\ArcGIS\DeveloperKit10.0\lib" \
/LIBPATH:$(QTDIR)\lib

LIBS = \
qtctl.lib aoctl.lib \
qt-mt335.lib

#
# The CPPSOURCES macro contains a list of source files.
#
# The CPPOBJECTS macro converts the CPPSOURCES macro into a list
# of object files.
#
# The CPPFLAGS macro contains a list of options to be passed to
# the compiler. Adding "-g" to this line will cause the compiler
# to add debugging information to the executable.
#
# The CPP macro defines the C++ compiler.
#
# The LINKFLAGS macro contains all of the library and library
# directory information to be passed to the linker.
#

CPPSOURCES = qt_sample.cpp
CPPOBJECTS = $(CPPSOURCES:.cpp=.obj)
CPPOPT = /EHsc /D_CRT_SECURE_NO_DEPRECATE
CPPFLAGS = -DESRI_UNIX $(INCLUDEDIRS) $(CPPOPT)
CPP = cl.exe
LINKFLAGS = $(LIBDIRS) $(LIBS)

#
# Default target: the first target is the default target.
# Just type "nmake -f Makefile.WindowsQt" to build it.
#

all: $(PROGRAM)

#
# Link target: automatically builds its object dependencies before
# executing its link command.
#

$(PROGRAM): $(CPPOBJECTS)
link.exe /out:$(PROGRAM) $(CPPOBJECTS) $(LINKFLAGS)

#
# Object targets: rules that define objects, their dependencies, and
# a list of commands for compilation.
#

qt_sample.obj: qt_sample.cpp qt_sample.h
$(CPP) $(CPPFLAGS) /c qt_sample.cpp

#
# Clean target: "nmake -f Makefile.WindowsQt clean" to remove unwanted objects and executables.
#

clean:
del -f $(CPPOBJECTS) $(PROGRAM)

#
# Run target: "nmake -f Makefile.WindowsQt run" to execute the application
#

run:
$(PROGRAM)