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: 818e5a625abcec8d4c0c1cf6763206a7e008e856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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-darwin-x86_64" => {
    inherit_from     => [ "darwin64-x86_64-cc" ],
    cflags => add("-fPIC"),
  },
);