File: feature_attributes.xml

package info (click to toggle)
inkscape 1.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 402,900 kB
  • sloc: cpp: 547,256; python: 72,677; ansic: 63,355; javascript: 3,864; xml: 2,345; sh: 1,667; makefile: 824; perl: 614
file content (35 lines) | stat: -rw-r--r-- 2,090 bytes parent folder | download
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
<!--
  set attributes for all features:
    - AllowAdvertise="no" (to hide "This feature will be installed when required")
    - InstallDefault="local" (to hide "This feature will be installed to run from network")

  this is ugly - investigate making this auto-updating
  see also https://gitlab.kitware.com/cmake/cmake/merge_requests/742


  Empty features (i.e. features that only contain other features but no components)
  need dummy components to ensure InstallDefault="local" works.
  see http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Removing-Install-to-Run-From-Network-Feature-Option-td688625.html
-->

<CPackWiXPatch>
  <CPackWiXFragment Id="#PRODUCTFEATURE" AllowAdvertise="no" InstallDefault="local" />

  <CPackWiXFragment Id="CM_G_group_1_program_files" AllowAdvertise="no" InstallDefault="local" AllowAbsent="no">
    <Component Id="dummy1" Directory="INSTALL_ROOT" Guid="7D08CAE1-A5A8-4C4B-A2B4-E97E2EA10FE4" KeyPath="yes" />
  </CPackWiXFragment>
  <CPackWiXFragment Id="CM_G_group_2_inkscape_data" AllowAdvertise="no" InstallDefault="local">
    <Component Id="dummy2" Directory="INSTALL_ROOT" Guid="7405B66E-65E5-403B-B407-E39025587E46" KeyPath="yes" />
  </CPackWiXFragment>
  <CPackWiXFragment Id="CM_G_group_3_translations" AllowAdvertise="no" InstallDefault="local">
    <Component Id="dummy3" Directory="INSTALL_ROOT" Guid="C2A35C47-B012-4DDF-B486-DD6A8DF42F5D" KeyPath="yes" />
  </CPackWiXFragment>

  <CPackWiXFragment Id="CM_C_inkscape" AllowAdvertise="no" InstallDefault="local" />
  <CPackWiXFragment Id="CM_C_python" AllowAdvertise="no" InstallDefault="local" />
  <CPackWiXFragment Id="CM_C_examples" AllowAdvertise="no" InstallDefault="local" />
  <CPackWiXFragment Id="CM_C_extensions" AllowAdvertise="no" InstallDefault="local" />
  <CPackWiXFragment Id="CM_C_tutorials" AllowAdvertise="no" InstallDefault="local" />
  <CPackWiXFragment Id="CM_C_dictionaries" AllowAdvertise="no" InstallDefault="local" />
  <!-- should also include every single CM_C_translations.* but adding them manually does not seem reasonable --> 
</CPackWiXPatch>