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

SConscript « icons « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bb27a7d4fb87e9924af36ea44c7984f6e81e2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
Import ('env')
import btools

env['RCFLAGS'].append("-DWINDRES")
env['RCFLAGS'].append("-DBLEN_VER_RC_STR_M=" + btools.VERSION)
env['RCFLAGS'].append("-DBLEN_VER_RC_1=" + btools.VERSION[0])
env['RCFLAGS'].append("-DBLEN_VER_RC_2=" + btools.VERSION[2])
env['RCFLAGS'].append("-DBLEN_VER_RC_3=" + btools.VERSION[3])
env['RCFLAGS'].append("-DBLEN_VER_RC_4=0")

env.BlenderRes('winresource', 'winblender.rc', ['core'], priority=[95])