makefile.mak

来自「ICE3.3.0--聊天程序服务器端demo」· MAK 代码 · 共 39 行

MAK
39
字号
# **********************************************************************## 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 + =
减小字号Ctrl + -
显示快捷键?