Update of /cvsroot/kde-cygwin/tools/profiler
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7210
Modified Files:
SConstruct
Log Message:
dos2unix
Index: SConstruct
===================================================================
RCS file: /cvsroot/kde-cygwin/tools/profiler/SConstruct,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SConstruct 14 Oct 2005 13:52:29 -0000 1.1
+++ SConstruct 14 Oct 2005 13:55:45 -0000 1.2
@@ -1,17 +1,17 @@
-#
-# Scons build script
-#
-#
-
-import sys
-
-version = '1.3.5'
-
-if sys.platform == 'cygwin':
- env = Environment(SHLIBPREFIX='cyg',SHLIBSUFFIX='-'+version[:1]+'.dll')
-else:
- env = Environment()
-
-
-env.SharedLibrary('profiler','profiler.cpp',CXXFLAGS='-DHAVE_UNISTD_H')
-env.Program('test','test.cpp',LIBS = 'profiler')
+#
+# Scons build script
+#
+#
+
+import sys
+
+version = '1.3.5'
+
+if sys.platform == 'cygwin':
+ env = Environment(SHLIBPREFIX='cyg',SHLIBSUFFIX='-'+version[:1]+'.dll')
+else:
+ env = Environment()
+
+
+env.SharedLibrary('profiler','profiler.cpp',CXXFLAGS='-DHAVE_UNISTD_H')
+env.Program('test','test.cpp',LIBS = 'profiler',LIBPATH='.')
|