diff --git a/eo/win/ChangeLog b/eo/win/ChangeLog index 3c61b360..30f4e0c3 100644 --- a/eo/win/ChangeLog +++ b/eo/win/ChangeLog @@ -1,3 +1,9 @@ +2006-12-17 Jochen Küpper + + * README: Added this file. + + * general: Removed all old unnecessary files. + 2006-12-05 Jochen Küpper * win/Makefile.am (EXTRA_DIST): Add new MSVC project files to distribution. diff --git a/eo/win/README b/eo/win/README new file mode 100644 index 00000000..35d23275 --- /dev/null +++ b/eo/win/README @@ -0,0 +1,7 @@ +This directory contains the project files for Microsoft Visual C++ + +For Visual Studio 2003 (and 2005) you can go to the eo\win (this) +directory and open the eo.sln file. It allows for the compilation of 4 +lib files (which will be placed in eo\win\lib). At the moment there +are no project/solution files to compile the test programs(eo\test) or +applications (eo\app). diff --git a/eo/win/Readme b/eo/win/Readme deleted file mode 100644 index d2761408..00000000 --- a/eo/win/Readme +++ /dev/null @@ -1,20 +0,0 @@ -This directory contains the project files for MSVC++ -They have been successfully tested with MSVC++ 6.0 -on Windows NT. - -There is one main DSW project file: eo.dsw -It contains the description of the project with all compiler options. - -There are several DSP files: - -eo.dsp for the library in src -utils.dsp ... src/utils -ga.dsp ... src/ga -es.dsp ... src/es - -and one additional DSP file for each program in test dir. - -The libraries are created in src/win/lib directory. -The objects and executable files are created in src/win/DEBUG -directory. - diff --git a/eo/win/create_all_dsp.sh b/eo/win/create_all_dsp.sh deleted file mode 100755 index feed7bfb..00000000 --- a/eo/win/create_all_dsp.sh +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/tcsh -f -# -# script that generates the DSP files for all programs in test dir -# -# to add a new one, add the corresponding line: -# -# create_dsp SourceFileName dspFileName [optional additional library] -# -# don't use upper-case letters in the dspFileName - -# create a backup -/bin/mv eo.dsw eo.dsw~ -# restore empty DSW -cp eo.org eo.dsw -# GO for all programs -create_dsp.sh t-eoParetoFitness t_eoparetofitness -create_dsp.sh t-eoPareto t_eopareto -create_dsp.sh t-eofitness t_eofitness -create_dsp.sh t-eoRandom t_eorandom -create_dsp.sh t-eobin t_eobin -create_dsp.sh t-eoVirus t_eovirus -create_dsp.sh t-MGE t_mge -create_dsp.sh t-MGE1bit t_mge1bit -create_dsp.sh t-MGE-control t_mge-control -create_dsp.sh t-eoStateAndParser t_eostateandparser -create_dsp.sh t-eoCheckpointing t_eocheckpointing -create_dsp.sh t-eoSSGA t_eossga -create_dsp.sh t-eoExternalEO t_eoexternaleo -create_dsp.sh t-eoSymreg t_eosymreg -create_dsp.sh t-eo t_eo -create_dsp.sh t-eoReplacement t_eoreplacement -create_dsp.sh t-eoSelect t_eoselect -create_dsp.sh t-eoGenOp t_eogenop -create_dsp.sh t-eoGA t_eoga ga -create_dsp.sh t-eoReal t_eoreal es -create_dsp.sh t-eoVector t_eovector -create_dsp.sh t-eoESAll t_eoesall es -create_dsp.sh t-eoPBIL t_eopbil ga diff --git a/eo/win/create_dsp.sh b/eo/win/create_dsp.sh deleted file mode 100755 index 78c3c2de..00000000 --- a/eo/win/create_dsp.sh +++ /dev/null @@ -1,37 +0,0 @@ -#! /bin/tcsh -f - -if ($#argv < 2) then - echo Usage $0 SourceName TargetName - echo Example: $0 t-eoGA t_eoga ga - echo " will create t_eoga.dsp that in turn is the Win project file" - echo " that will create the executable t_eoga using source" - echo " t-eoga.cpp in test dir" - exit -endif -echo "Creating $2.dsp" -echo s/DIRNAME/$2/g > toto.sed -echo s/SOURCENAME/$1/g >> toto.sed - -sed -f toto.sed test_dsp.tmpl > $2.dsp -/bin/rm toto.sed - -echo "Adding $2.dsp in the main eo.dsw project file" - -echo "" >> eo.dsw -echo Project: \"$2\"=.\\\\$2.dsp - Package Owner=\<4\> >> eo.dsw -echo "" >> eo.dsw -echo Package=\<5\> >> eo.dsw -echo '{{{' >> eo.dsw -echo '}}}' >> eo.dsw -echo "" >> eo.dsw -echo Package=\<4\> >> eo.dsw -echo '{{{' >> eo.dsw -echo '}}}' >> eo.dsw -echo "" >> eo.dsw -echo '###############################################################################' >> eo.dsw - -echo "AND DON'T FORGET to add the 3 lines in eo.dsw" -echo " (too lazy to do it automatically)" -echo " Begin Project Dependency" -echo " " Project_Dep_Name $2 -echo " End Project Dependency" diff --git a/eo/win/create_tut.sh b/eo/win/create_tut.sh deleted file mode 100755 index c9737bd0..00000000 --- a/eo/win/create_tut.sh +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/tcsh -f - -if ($#argv < 2) then - echo "Usage $0 LessonNumber NickName SourceName (no .cpp)" - echo Example: $0 1 bit FirstBitGA - echo " will create the Win project file tut_1_bit.dsp" - echo " that will create the executable tut_1_bit.exe using source" - echo " FirstBitGA.cpp in tutorial/Lesson1 dir" - exit -endif -echo "Creating tut_{$1}_{$2}.dsp" -echo s/tut_N_XXX/tut_{$1}_{$2}/g > toto.sed -echo s/LessonN/Lesson$1/g >> toto.sed -echo s/SRCXXX/$3/g >> toto.sed - -sed -f toto.sed tut_N_XXX.tmpl > tut_{$1}_{$2}.dsp -/bin/rm toto.sed - -echo "Adding tut_{$1}_{$2}.dsp in the main eo.dsw project file" - -echo "" >> eo.dsw -echo Project: \"tut_{$1}_{$2}\"=.\\\\tut_{$1}_{$2}.dsp - Package Owner=\<4\> >> eo.dsw -echo "" >> eo.dsw -echo Package=\<5\> >> eo.dsw -echo '{{{' >> eo.dsw -echo '}}}' >> eo.dsw -echo "" >> eo.dsw -echo Package=\<4\> >> eo.dsw -echo '{{{' >> eo.dsw -echo '}}}' >> eo.dsw -echo "" >> eo.dsw -echo '###############################################################################' >> eo.dsw - -echo "AND DON'T FORGET to add the 3 lines in eo.dsw" -echo " (too lazy to do it automatically)" -echo " Begin Project Dependency" -echo " " Project_Dep_Name tut_{$1}_{$2} -echo " End Project Dependency" diff --git a/eo/win/create_tut_para.sh b/eo/win/create_tut_para.sh deleted file mode 100755 index 6e12d41e..00000000 --- a/eo/win/create_tut_para.sh +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/tcsh -f - -if ($#argv < 2) then - echo "Usage $0 LessonNumber NickName SourceName (no .cpp)" - echo Example: $0 1 bit FirstBitGA - echo " will create the Win project file tut_para1_bit.dsp" - echo " that will create the executable tut_para1_full.exe using source" - echo " IslandBitEA.cpp in tutorial/ParadisEO/Lesson1 dir" - exit -endif -echo "Creating tut_{$1}_{$2}.dsp" -echo s/tut_N_XXX/tut_para{$1}_{$2}/g > toto.sed -echo s/LessonN/Lesson$1/g >> toto.sed -echo s/SRCXXX/$3/g >> toto.sed - -sed -f toto.sed tut_paraN_XXX.tmpl > tut_para{$1}_{$2}.dsp -/bin/rm toto.sed - -echo "Adding tut_{$1}_{$2}.dsp in the main eo.dsw project file" - -echo "" >> eo.dsw -echo Project: \"tut_para{$1}_{$2}\"=.\\\\tut_para{$1}_{$2}.dsp - Package Owner=\<4\> >> eo.dsw -echo "" >> eo.dsw -echo Package=\<5\> >> eo.dsw -echo '{{{' >> eo.dsw -echo '}}}' >> eo.dsw -echo "" >> eo.dsw -echo Package=\<4\> >> eo.dsw -echo '{{{' >> eo.dsw -echo '}}}' >> eo.dsw -echo "" >> eo.dsw -echo '###############################################################################' >> eo.dsw - -echo "AND DON'T FORGET to add the 3 lines in eo.dsw" -echo " (too lazy to do it automatically)" -echo " Begin Project Dependency" -echo " " Project_Dep_Name tut_para{$1}_{$2} -echo " End Project Dependency" diff --git a/eo/win/test_dsp.tmpl b/eo/win/test_dsp.tmpl deleted file mode 100644 index e7510a2b..00000000 --- a/eo/win/test_dsp.tmpl +++ /dev/null @@ -1,102 +0,0 @@ -# Microsoft Developer Studio Project File - Name="DIRNAME" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=DIRNAME - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "DIRNAME.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "DIRNAME.mak" CFG="DIRNAME - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "DIRNAME - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "DIRNAME - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "DIRNAME - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release\obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /w /W0 /GR /GX /O2 /I "..\src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_GNUPLOT" /YX /FD /c -# ADD BASE RSC /l 0x40c /d "NDEBUG" -# ADD RSC /l 0x40c /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 all_lib.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /libpath:".\lib" - -!ELSEIF "$(CFG)" == "DIRNAME - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debugj" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug\obj" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /w /W0 /Gm /GR /GX /ZI /Od /I "..\src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_GNUPLOT" /YX /FD /GZ /c -# ADD BASE RSC /l 0x40c /d "_DEBUG" -# ADD RSC /l 0x40c /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 all_libd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:".\lib" - -!ENDIF - -# Begin Target - -# Name "DIRNAME - Win32 Release" -# Name "DIRNAME - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE="..\test\SOURCENAME.cpp" -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/eo/win/tut_N_XXX.tmpl b/eo/win/tut_N_XXX.tmpl deleted file mode 100644 index 0960e8bb..00000000 --- a/eo/win/tut_N_XXX.tmpl +++ /dev/null @@ -1,102 +0,0 @@ -# Microsoft Developer Studio Project File - Name="tut_N_XXX" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=tut_N_XXX - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tut_N_XXX.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tut_N_XXX.mak" CFG="tut_N_XXX - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "tut_N_XXX - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "tut_N_XXX - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "tut_N_XXX - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /w /W0 /GR /GX /O2 /I "..\src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_GNUPLOT" /YX /FD /c -# ADD BASE RSC /l 0x40c /d "NDEBUG" -# ADD RSC /l 0x40c /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 all_lib.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /libpath:".\lib" - -!ELSEIF "$(CFG)" == "tut_N_XXX - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "tut_N_XXX___Win32_Debug0" -# PROP BASE Intermediate_Dir "tut_N_XXX___Win32_Debug0" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /w /W0 /Gm /GR /GX /ZI /Od /I "..\src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_GNUPLOT" /YX /FD /GZ /c -# ADD BASE RSC /l 0x40c /d "_DEBUG" -# ADD RSC /l 0x40c /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 all_libd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:".\lib" - -!ENDIF - -# Begin Target - -# Name "tut_N_XXX - Win32 Release" -# Name "tut_N_XXX - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE="..\tutorial\LessonN\SRCXXX.cpp" -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/eo/win/tut_paraN_XXX.tmpl b/eo/win/tut_paraN_XXX.tmpl deleted file mode 100644 index 9616115d..00000000 --- a/eo/win/tut_paraN_XXX.tmpl +++ /dev/null @@ -1,102 +0,0 @@ -# Microsoft Developer Studio Project File - Name="tut_N_XXX" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=tut_N_XXX - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tut_N_XXX.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tut_N_XXX.mak" CFG="tut_N_XXX - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "tut_N_XXX - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "tut_N_XXX - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "tut_N_XXX - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /w /W0 /GR /GX /O2 /I "..\src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_GNUPLOT" /YX /FD /c -# ADD BASE RSC /l 0x40c /d "NDEBUG" -# ADD RSC /l 0x40c /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 all_lib.lib mpich.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /libpath:".\lib" - -!ELSEIF "$(CFG)" == "tut_N_XXX - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "tut_N_XXX___Win32_Debug0" -# PROP BASE Intermediate_Dir "tut_N_XXX___Win32_Debug0" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /w /W0 /Gm /GR /GX /ZI /Od /I "..\src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_GNUPLOT" /YX /FD /GZ /c -# ADD BASE RSC /l 0x40c /d "_DEBUG" -# ADD RSC /l 0x40c /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 all_libd.lib mpich.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:".\lib" - -!ENDIF - -# Begin Target - -# Name "tut_N_XXX - Win32 Release" -# Name "tut_N_XXX - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE="..\tutorial\ParadisEO\LessonN\SRCXXX.cpp" -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project