76 lines
1.5 KiB
Plaintext
76 lines
1.5 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989 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 Wood (stevewo) 12-Apr-1990
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGETNAME=logon
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=UMAPPL_NOLIB
|
||
|
USE_MSVCRT=1
|
||
|
|
||
|
SXS_ASSEMBLY_NAME=Microsoft.Windows.Shell.ScreenSavers
|
||
|
SXS_ASSEMBLY_VERSION=1.0
|
||
|
SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1
|
||
|
SXS_MANIFEST=ScrnSave.manifest
|
||
|
SXS_MANIFEST_IN_RESOURCES=1
|
||
|
SXS_MANIFEST_RESOURCE_ID=123
|
||
|
SXS_NO_BINPLACE=1
|
||
|
|
||
|
INCLUDES =..\common;..\..\h;..\..\..\inc
|
||
|
INCLUDES = $(INCLUDES);$(PROJECT_ROOT)\lib\$(O)
|
||
|
|
||
|
C_DEFINES=-DUNICODE
|
||
|
|
||
|
!IFNDEF MSC_WARNING_LEVEL
|
||
|
MSC_WARNING_LEVEL=/W3
|
||
|
!ENDIF
|
||
|
MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
|
||
|
|
||
|
SOURCES=generic.rc \
|
||
|
logon.c
|
||
|
|
||
|
UMTYPE=windows
|
||
|
UMAPPL=logon
|
||
|
UMAPPLEXT=.scr
|
||
|
UMLIBS=$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\comctl32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\scrnsavw.lib \
|
||
|
$(PROJECT_LIB_PATH)\shlwapip.lib \
|
||
|
$(O)\generic.res
|
||
|
|
||
|
MISCFILES=\
|
||
|
!if $(WIN64)
|
||
|
win64ads.bmp \
|
||
|
win64dtc.bmp \
|
||
|
win64pro.bmp \
|
||
|
win64srv.bmp
|
||
|
!else
|
||
|
win32ads.bmp \
|
||
|
win32dtc.bmp \
|
||
|
win32per.bmp \
|
||
|
win32pro.bmp \
|
||
|
win32srv.bmp \
|
||
|
win32sbs.bmp \
|
||
|
win32bla.bmp
|
||
|
!endif
|