Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssl.conf « cmake « build_environment « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa59bcf282537878a180271110c14d1f7d01500e (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
my %targets = (

  "blender-linux-x86" => {
    inherit_from     => [ "linux-x86" ],
    cflags => add("-fPIC"),
  },
  "blender-linux-x86_64" => {
    inherit_from     => [ "linux-x86_64" ],
    cflags => add("-fPIC"),
  },
  "blender-linux-aarch64" => {
    inherit_from     => [ "linux-aarch64" ],
    cxxflags => add("-fPIC"),
    cflags => add("-fPIC"),
  },
  "blender-darwin-x86_64" => {
    inherit_from     => [ "darwin64-x86_64-cc" ],
    cflags => add("-fPIC"),
  },
  "blender-darwin-arm64" => {
    inherit_from     => [ "darwin-common" ],
    cxxflags => add("-fPIC -arch arm64"),
    cflags => add("-fPIC -arch arm64"),
  },
);