-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakefilePlat.mak
36 lines (26 loc) · 2.78 KB
/
MakefilePlat.mak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 1991-2022 Amebis
######################################################################
# Setup
######################################################################
SetupCompile ::
msbuild.exe $(MSBUILDFLAGS) "ZRCola.sln" /t:Build /p:Configuration=Release /p:Platform=$(PLAT)
msbuild.exe $(MSBUILDFLAGS) "MSI\MSICA\MSICA.sln" /t:Build /p:Configuration=Release /p:Platform=$(PLAT)
msbuild.exe $(MSBUILDFLAGS) "Updater\Updater.sln" /t:Build /p:Configuration=Release /p:Platform=$(PLAT)
SetupDebugCompile ::
msbuild.exe $(MSBUILDFLAGS) "ZRCola.sln" /t:Build /p:Configuration=Debug /p:Platform=$(PLAT)
msbuild.exe $(MSBUILDFLAGS) "MSI\MSICA\MSICA.sln" /t:Build /p:Configuration=Debug /p:Platform=$(PLAT)
msbuild.exe $(MSBUILDFLAGS) "Updater\Updater.sln" /t:Build /p:Configuration=Debug /p:Platform=$(PLAT)
######################################################################
# Publishing
######################################################################
"output\PDB.zip" : output\$(PLAT).Release\*.pdb
######################################################################
# Configuration Specific
######################################################################
CFG=Release
CFG_SUFFIX=
!INCLUDE "MakefilePlatCfg.mak"
CFG=Debug
CFG_SUFFIX=D
!INCLUDE "MakefilePlatCfg.mak"