Subversion Repositories gelsvn

Rev

Rev 179 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 179 Rev 307
1
project(GEL) {
1
project(GEL) {
2
    includes += $(GELEXT)/include
2
    includes += $(GELEXT)/include
3
    libout = $(GEL_ROOT)/lib
3
    libout = $(GEL_ROOT)/lib
4
    staticname = GEL
4
    staticname = GEL
5
    
5
    
6
 
6
 
7
    Header_Files {
7
    Header_Files {
8
    CGLA {
8
    CGLA {
9
        $(GEL_ROOT)/src/CGLA/*.h
9
        $(GEL_ROOT)/src/CGLA/*.h
10
    }
10
    }
11
    Geometry{
11
    Geometry{
12
        $(GEL_ROOT)/src/Geometry/*.h
12
        $(GEL_ROOT)/src/Geometry/*.h
13
    }
13
    }
14
    GLGraphics {
14
    GLGraphics {
15
        $(GEL_ROOT)/src/GLGraphics/*.h
15
        $(GEL_ROOT)/src/GLGraphics/*.h
16
    }
16
    }
17
    HMesh {
17
    HMesh {
18
        $(GEL_ROOT)/src/HMesh/*.h
18
        $(GEL_ROOT)/src/HMesh/*.h
19
    }
19
    }
20
    LinAlg {
20
    LinAlg {
21
        $(GEL_ROOT)/src/LinAlg/*.h
21
        $(GEL_ROOT)/src/LinAlg/*.h
22
    }
22
    }
23
    Util {
23
    Util {
24
        $(GEL_ROOT)/src/Util/*.h
24
        $(GEL_ROOT)/src/Util/*.h
25
    }
25
    }
26
    
26
    
27
   }
27
   }
28
   
28
   
29
   Source_Files {
29
   Source_Files {
30
    CGLA {
30
    CGLA {
31
        $(GEL_ROOT)/src/CGLA/*.cpp
31
        $(GEL_ROOT)/src/CGLA/*.cpp
32
    }
32
    }
33
    Geometry{
33
    Geometry{
34
        $(GEL_ROOT)/src/Geometry/*.cpp
34
        $(GEL_ROOT)/src/Geometry/*.cpp
35
    }
35
    }
36
    GLGraphics {
36
    GLGraphics {
37
        $(GEL_ROOT)/src/GLGraphics/*.cpp
37
        $(GEL_ROOT)/src/GLGraphics/*.cpp
38
    }
38
    }
39
    HMesh {
39
    HMesh {
40
        $(GEL_ROOT)/src/HMesh/*.cpp
40
        $(GEL_ROOT)/src/HMesh/*.cpp
41
    }
41
    }
42
    LinAlg {
42
    LinAlg {
43
        $(GEL_ROOT)/src/LinAlg/*.cpp
43
        $(GEL_ROOT)/src/LinAlg/*.cpp
44
    }
44
    }
45
    Util {
45
    Util {
46
        $(GEL_ROOT)/src/Util/*.cpp
46
        $(GEL_ROOT)/src/Util/*.cpp
47
    }
47
    }
48
    
48
    
49
   }
49
   }
50
    
50
    
51
}
51
}
52
 
52