Source code of Windows XP (NT5)
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.
|
|
!IF 0
Copyright (c) 1994 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.
Author:
Steve Cathcart (stevecat) 15-Nov-1994
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
Use the following line when this is UNICODE ported
C_DEFINES=-DWIN32 -DWINNT -DUNICODE -D_WIN32 -DWINVER=0x0400 (huh? -bobday)
!ENDIF
TARGETNAME=tweakui TARGETPATH=obj TARGETTYPE=DYNLINK TARGETEXT=cpl
# Cannot use MSVCRT; we need to run on Win95 golden #USE_MSVCRT=1
TARGETLIBS=$(SDK_LIB_PATH)\kernel32.lib \ $(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\comctl32.lib \ $(SDK_LIB_PATH)\shell32.lib \ $(SDK_LIB_PATH)\gdi32.lib \ $(SDK_LIB_PATH)\advapi32.lib \ $(SDK_LIB_PATH)\comdlg32.lib \ $(SDK_LIB_PATH)\shlwapi.lib \ $(SDK_LIB_PATH)\version.lib \
INCLUDES=$(WINDOWS_INC_PATH)
DLLENTRY= Entry32 DLLBASE=0x40000000 DELAYLOAD=SHLWAPI.DLL
# Don't turn on -DWINNT because we're still building Win95 binaries this way
C_DEFINES=-DNT WIN32_WINNT_VERSION=0x0400 WIN32_WIN95_VERSION=0x0400 WIN32_IE_VERSION=0x0000
UMTYPE=windows SOURCES= tweakui.rc \ addrm.cpp \ boot.cpp \ common.cpp \ desktop.cpp \ mycomp.cpp \ network.cpp \ expire.cpp \ explorer.cpp \ general.cpp \ mouse.cpp \ link.cpp \ lv.cpp \ lvchk.cpp \ misc.cpp \ ole.cpp \ paranoia.cpp \ ie4.cpp \ control.cpp \ cmd.cpp \ comdlg32.cpp \ pickicon.cpp \ pidl.cpp \ reg.cpp \ repair.cpp \ secret.cpp \ strings.cpp \ tools.cpp \ tweakui.cpp \ prsht.cpp \ with.cpp
PRECOMPILED_CXX=1 PRECOMPILED_INCLUDE=tweakui.h PRECOMPILED_PCH=pch.pch PRECOMPILED_OBJ=pch.obj
MISCFILES=tweakui.inf\ tweakui.hlp\ tweakui.cnt
|