~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Mod/Draft/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-07-16 18:37:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090716183741-oww9kcxqrk991i1n
Tags: upstream-0.8.2237
ImportĀ upstreamĀ versionĀ 0.8.2237

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
copy_to_local_output_paths(draftlibs/dxfColorMap.py)
 
2
copy_to_local_output_paths(draftlibs/dxfImportObjects.py)
 
3
copy_to_local_output_paths(draftlibs/dxfLibrary.py)
 
4
copy_to_local_output_paths(draftlibs/dxfReader.py)
 
5
copy_to_local_output_paths(draftlibs/fcgeo.py)
 
6
copy_to_local_output_paths(draftlibs/fcvec.py)
 
7
copy_to_local_output_paths(draftlibs/__init__.py)
 
8
copy_to_local_output_paths(Init.py)
 
9
copy_to_local_output_paths(InitGui.py)
 
10
copy_to_local_output_paths(Draft.py)
 
11
copy_to_local_output_paths(draftGui.py)
 
12
copy_to_local_output_paths(importDXF.py)
 
13
copy_to_local_output_paths(importOCA.py)
 
14
copy_to_local_output_paths(importSVG.py)
 
15
copy_to_local_output_paths(icons.svg)
 
16
copy_to_local_output_paths(preferences-draft.svg)
 
17
copy_to_local_output_paths(userprefs.ui)
 
18
 
 
19
install(
 
20
                 FILES
 
21
                                 draftlibs/dxfColorMap.py
 
22
                                 draftlibs/dxfImportObjects.py
 
23
                                 draftlibs/dxfLibrary.py
 
24
                                 draftlibs/dxfReader.py
 
25
                                 draftlibs/fcvec.py
 
26
                                 draftlibs/fcgeo.py
 
27
                                 draftlibs/__init__.py
 
28
                 DESTINATION
 
29
                                 Mod/Draft/draftlibs)
 
30
 
 
31
install(
 
32
                 FILES
 
33
                                 Draft.py
 
34
                                 draftGui.py
 
35
                                 importOCA.py
 
36
                                 importDXF.py
 
37
                                 importSVG.py
 
38
                                 Init.py
 
39
                                 InitGui.py
 
40
                                 icons.svg
 
41
                                 preferences-draft.svg
 
42
                                 userprefs.ui
 
43
                 DESTINATION
 
44
                                 Mod/Draft)
 
45