📄 makefile.mak
字号:
# **********************************************************************## Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.## This copy of Chat Demo is licensed to you under the terms# described in the CHAT_DEMO_LICENSE file included in this# distribution.## **********************************************************************top_srcdir = ..\..!include $(top_srcdir)/config/Make.rules.makMSBUILD_OPTS = /p:Platform="Any CPU"!if "$(OPTIMIZE)" == "yes"MSBUILD_OPTS = /p:Configuration=Release $(MSBUILD_OPTS)!elseMSBUILD_OPTS = /p:Configuration=Debug $(MSBUILD_OPTS)!endif!if "$(ICE_HOME)" != ""MSBUILD_OPTS = /p:ICE_HOME=$(ICE_HOME) $(MSBUILD_OPTS)!endifall:: cmd /c MSBuild ChatDemoGUI.sln $(MSBUILD_OPTS)clean:: cmd /c MSBuild ChatDemoGUI.sln /t:Clean $(MSBUILD_OPTS)install:: copy ..\..\bin\ChatDemoGUI.exe $(install_bindir) copy ..\..\bin\ChatDemoGUI.exe.config $(install_bindir) @for %i in ( Ice IceSSL Glacier2 ) do \ @if exist ..\..\bin\%i.dll \ @echo "Copying %i.dll..." && copy ..\..\bin\%i.dll $(install_bindir)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -