File: SConscript

package info (click to toggle)
glob2 0.9.4.4-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,848 kB
  • sloc: cpp: 89,685; python: 868; ansic: 259; sh: 49; makefile: 19
file content (17 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import os
    
if "mksprite" in COMMAND_LINE_TARGETS:
    env = Environment()
    env.ParseConfig("Magick++-config --cxxflags --cppflags")
    env.ParseConfig("Magick++-config --ldflags --libs")
    env.Program("mksprite", "mksprite.cpp")
    
Import("env")
Import("PackTar")
    
if 'dist' or 'install' in COMMAND_LINE_TARGETS:
    PackTar(env["TARFILE"], "mksprite.cpp")
    PackTar(env["TARFILE"], "README")
    
    PackTar(env["TARFILE"], "SConscript")