summaryrefslogtreecommitdiff
path: root/xmake/scripts/vsxmake/vsproj/templates/Xmake.Custom.props
blob: 00d471bc84e9b5635a38148a1cf55892185f02b9 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <!-- inherit parent settings -->
  <Import Condition="Exists('$(MSBuildThisFileDirectory)\..\Xmake.Custom.props')"
    Project="$(MSBuildThisFileDirectory)\..\Xmake.Custom.props" />

  <PropertyGroup Label="XmakePaths">
    <!-- set environment XMAKE_CONFIGDIR for xmake tasks -->
    <!-- <XmakeConfigDir Condition="'$(XmakeMode)|$(XmakeArch)' == 'release|x86'">$(XmakeProjectDir)\.xmake</XmakeConfigDir> -->

    <!-- set output dir for xmake tasks -->
    <!-- <XmakeBuildDir>$(XmakeProjectDir)\build</XmakeBuildDir> -->
  </PropertyGroup>

  <PropertyGroup Label="XmakeFlags">
    <!-- Configure these flags to customize xmake build process -->
    <!--
      Inherit parents:
        <XmakeCleanFlags>$(XmakeCleanflags) -D</XmakeCleanFlags>
      Override parents:
        <XmakeCleanFlags>-D</XmakeCleanFlags>
      Respect parents:
        <XmakeCleanFlags Condition=" '$(XmakeCleanFlags)' == '' ">-D</XmakeCleanFlags>

      For -v and -D, use <XmakeVerbose> and <XmakeDiagnosis> as its more convenient.
    -->

    <!-- Set -a for "xmake clean" -->
    <!-- <XmakeCleanAll Condition="'$(XmakeCleanAll)' == ''">true</XmakeCleanAll> -->

    <!-- Set -v for all xmake call -->
    <!-- <XmakeVerbose Condition="'$(XmakeVerbose)' == ''">false</XmakeVerbose> -->

    <!-- Set -D for all xmake call -->
    <!-- <XmakeDiagnosis Condition="'$(XmakeDiagnosis)' == ''">false</XmakeDiagnosis> -->

    <!-- Set -r for "xmake build" for selected files -->
    <!-- <XmakeRebuildFile Condition="'$(XmakeRebuildFile)' == ''">false</XmakeRebuildFile> -->


    <!-- Additional flags for "xmake clean" -->
    <!-- <XmakeCleanFlags>$(XmakeCleanflags)</XmakeCleanFlags> -->

    <!-- Additional flags for "xmake build" -->
    <!-- <XmakeBuildFlags>$(XmakeBuildFlags)</XmakeBuildFlags> -->

    <!-- Additional flags for "xmake config" -->
    <!-- <XmakeConfigFlags>$(XmakeConfigFlags)</XmakeConfigFlags> -->

    <!-- Additional flags for all xmake call -->
    <!-- <XmakeCommonFlags>$(XmakeCommonFlags)</XmakeCommonFlags> -->
  </PropertyGroup>
</Project>