70 lines
2 KiB
Plaintext
70 lines
2 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989-1991 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sources.
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This file specifies the target component being built and the list of
|
||
|
sources files needed to build that component. Also specifies optional
|
||
|
compiler switches and libraries that are unique for the component being
|
||
|
built.
|
||
|
|
||
|
|
||
|
History:
|
||
|
Created 25-May-96 by Dave Plummer (davepl)
|
||
|
from template created 12-Apr-1990 by Steve Wood (stevewo)
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGET_BOTH = 1
|
||
|
PRECOMPILED_CXX = 1
|
||
|
CCSHELL_DIR = $(PROJECT_ROOT)
|
||
|
!include $(CCSHELL_DIR)\common.inc
|
||
|
|
||
|
SOURCES_USED = $(SOURCES_USED) $(CCSHELL_DIR)\common.inc
|
||
|
|
||
|
TARGETNAME = proptest
|
||
|
TARGETPATH = obj
|
||
|
TARGETTYPE = PROGRAM
|
||
|
|
||
|
USE_MSVCRT = 1
|
||
|
|
||
|
|
||
|
TARGETLIBS = $(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(WINDOWS_LIB_PATH)\gdi32p.lib \
|
||
|
$(WINDOWS_LIB_PATH)\user32p.lib \
|
||
|
$(SDK_LIB_PATH)\advapi32.lib \
|
||
|
# $(SDK_LIB_PATH)\comdlg32.lib \
|
||
|
# $(SDK_LIB_PATH)\mpr.lib \
|
||
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
||
|
$(SDK_LIB_PATH)\shell32.lib \
|
||
|
$(SHELL_LIB_PATH)\shell32p.lib \
|
||
|
$(SDK_LIB_PATH)\ole32.lib \
|
||
|
$(SDK_LIB_PATH)\uuid.lib \
|
||
|
# $(SDK_LIB_PATH)\comctl32.lib \
|
||
|
# $(SHELL_LIB_PATH)\comctlp.lib \
|
||
|
$(SHELL_LIB_PATH)\shlwapip.lib \
|
||
|
$(CCSHELL_DIR)\lib\$(O)\shguid.lib \
|
||
|
$(CCSHELL_DIR)\lib\$(O)\shguidp.lib \
|
||
|
$(CCSHELL_DIR)\lib\stock\$(O)\stock.lib
|
||
|
|
||
|
LINKLIBS = $(LINKLIBS) \
|
||
|
$(CCSHELL_DIR)\lib\stock\$O\stock.lib \
|
||
|
# ..\..\lib\wmstub.lib \
|
||
|
# ..\..\lib\wmvcore.lib
|
||
|
|
||
|
|
||
|
INCLUDES=$(INCLUDES);..\inc
|
||
|
|
||
|
SOURCES = ..\proptest.cpp \
|
||
|
|
||
|
PRECOMPILED_INCLUDE = ..\pch.h
|
||
|
|
||
|
|