📄 get_time.mak
字号:
# Nmake macros for building Windows 32-Bit apps
all: Get_Time.exe
# Update the resource if necessary
Get_Time.res: Get_Time.rc Get_Time.h
rc -r -fo Get_Time.res Get_Time.rc
# Update the object file if necessary
Get_Time.obj: Get_Time.cpp Get_Time.h
$(cc) $(cdebug) $(cflags) $(cvars) Get_Time.cpp
# Update the executable file if necessary, and if so, add the resource back in.
Get_Time.exe: Get_Time.obj Get_Time.res
$(link) $(linkdebug) $(guiflags) -out:Get_Time.exe Get_Time.obj Get_Time.res $(guilibs) advapi.lib
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -