[Kde-cygwin-cvs] CVS: tools/profiler SConstruct,NONE,1.1
Status: Inactive
Brought to you by:
habacker
From: Ralf H. <hab...@us...> - 2005-10-14 13:52:42
|
Update of /cvsroot/kde-cygwin/tools/profiler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6698 Added Files: SConstruct Log Message: new file --- NEW FILE: SConstruct --- # # 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') |