ometah-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[oMetah-devel] ometah SConstruct


From: Johann
Subject: [oMetah-devel] ometah SConstruct
Date: Fri, 11 Mar 2005 05:25:24 -0500

CVSROOT:        /cvsroot/ometah
Module name:    ometah
Branch:         
Changes by:     Johann <address@hidden> 05/03/11 10:25:24

Modified files:
        .              : SConstruct 

Log message:
        * compilation of the objects

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/ometah/ometah/SConstruct.diff?tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: ometah/SConstruct
diff -u ometah/SConstruct:1.1 ometah/SConstruct:1.2
--- ometah/SConstruct:1.1       Thu Mar 10 17:59:43 2005
+++ ometah/SConstruct   Fri Mar 11 10:25:24 2005
@@ -1,2 +1,17 @@
 env = Environment(CCFLAGS = '-Wno-deprecated')
-env.Program(target = 'ometah', source = 'interface/ometah.cpp')
+
+
+
+common = 
['geometry.cpp','itsPoint.cpp','itsSet.cpp','logic.cpp','matrix.cpp','random.cpp','string.cpp']
+common = ['common/'+i for i in common]
+
+metaheuristic = ['itsMetaheuristic.cpp','itsEstimationOfDistribution.cpp']
+metaheuristic = ['metaheuristic/'+i for i in metaheuristic]
+
+problem = ['itsProblem.cpp','itsRosenbrock.cpp']
+problem = ['problem/'+i for i in problem]
+
+interface = ['ometah.cpp']
+interface = ['interface/'+i for i in interface]
+
+env.Program( target = 'ometah', source = 
common+metaheuristic+problem+interface )




reply via email to

[Prev in Thread] Current Thread [Next in Thread]