mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
578 B
34 lines
578 B
#
|
|
# Builds a simple windows-based test program
|
|
#
|
|
|
|
!include $(PROJECT_ROOT)\wia\wiaenv.inc
|
|
|
|
TARGETNAME=wiaregme
|
|
TARGETPATH=$(OBJ_DIR)
|
|
TARGETTYPE=PROGRAM
|
|
|
|
UMTYPE=windows
|
|
|
|
INCLUDES=$(INCLUDES)
|
|
|
|
SOURCES= \
|
|
..\wiaregme.cpp \
|
|
..\msgwrap.cpp \
|
|
..\clistbox.cpp \
|
|
..\tools.cpp \
|
|
..\wiaregme.rc
|
|
|
|
USE_NATIVE_EH=1
|
|
USE_MSVCRT=1
|
|
|
|
PRECOMPILED_CXX=1
|
|
PRECOMPILED_INCLUDE=..\stdafx.h
|
|
PRECOMPILED_PCH=stdafx.pch
|
|
PRECOMPILED_OBJ=stdafx.obj
|
|
|
|
TARGETLIBS= $(TARGETLIBS) \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\wiaguid.lib
|
|
|
|
|