summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2019-12-21 12:46:07 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-12-22 14:48:16 +0100
commitc227e5402f4c7470bae34998f6e8ecd6752545cf (patch)
tree6496ce2b8a040a488ed0ceac9b4ea5e937b46908
parent81cbaa728f595aa25819206dca6f71338686ad9e (diff)
downloadcppunit-c227e5402f4c7470bae34998f6e8ecd6752545cf.tar.gz
remove traces of .ds[pw] files from docs
Change-Id: I6ebc31181ccfe379be96e979cda3717a991cf513 Reviewed-on: https://gerrit.libreoffice.org/85663 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--INSTALL-WIN32.txt9
-rw-r--r--doc/Money.dox2
-rw-r--r--doc/cookbook.dox2
-rw-r--r--doc/other_documentation.dox2
-rw-r--r--examples/ReadMe.txt4
5 files changed, 9 insertions, 10 deletions
diff --git a/INSTALL-WIN32.txt b/INSTALL-WIN32.txt
index 9069382..2fec0a2 100644
--- a/INSTALL-WIN32.txt
+++ b/INSTALL-WIN32.txt
@@ -2,11 +2,10 @@ Frequently Asked Questions: See doc/FAQ
At the current time, the only supported WIN32 platform is
-Microsoft Visual C++. You must have VC++ 6.0 at least.
+Microsoft Visual C++. You must have VC++ 2010 at least.
Quick Steps to compile & run a sample using the GUI TestRunner:
-- Open examples/examples.dsw in VC++ (contains all the samples).
- VC7 will ask you if you want to convert, anwser 'yes to all'.
+- Open examples/examplesXXXX.sln in VC++ (contains all the samples).
- Make HostApp the Active project
- Compile
- Run the project
@@ -86,7 +85,7 @@ Building:
Testing:
--------
-* Open the workspace examples/Examples.dsw.
+* Open the workspace examples/examplesXXXX.sln.
* Make CppUnitTestApp the active project.
* Select the configuration you build the library for.
* Compile and run the project. The TestRunner GUI should appear.
@@ -96,7 +95,7 @@ Libraries:
----------
All the compiled libraries and DLL can be found in the 'lib' directory.
-Most libraries can be build from src/CppUnitLibraries.dsw workspace.
+Most libraries can be build from src/CppUnitLibrariesXXXX.sln workspace.
lib\:
cppunit.lib : CppUnit static library "Multithreaded DLL"
diff --git a/doc/Money.dox b/doc/Money.dox
index c1d8126..0bec54e 100644
--- a/doc/Money.dox
+++ b/doc/Money.dox
@@ -28,7 +28,7 @@ $CPPUNIT/:
~~~~~
First, you need to compile %CppUnit libraries:
-- Open the `$CPPUNIT/src/CppUnitLibraries.dsw` workspace in VC++.
+- Open the `$CPPUNIT/src/CppUnitLibrariesXXXX.sln` workspace in VC++.
- In the 'Build' menu, select 'Batch Build...'
- In the batch build dialog, select all projects and press the build button.
- The resulting libraries can be found in the `$CPPUNIT/lib/` directory.
diff --git a/doc/cookbook.dox b/doc/cookbook.dox
index a46e59b..e8b689c 100644
--- a/doc/cookbook.dox
+++ b/doc/cookbook.dox
@@ -513,7 +513,7 @@ Now, you need to run your application after compilation.
With Visual C++, this is done in <em>Project Settings/Post-Build step</em>,
by adding the following command: <tt>"$(TargetPath)"</tt>. It is expanded to
the application executable path. Look up the project
-<tt>examples/cppunittest/CppUnitTestMain.dsp</tt> which
+<tt>examples/cppunittest/CppUnitTestMain.vcproj</tt> which
use that technic.
diff --git a/doc/other_documentation.dox b/doc/other_documentation.dox
index b7a1153..c935a7a 100644
--- a/doc/other_documentation.dox
+++ b/doc/other_documentation.dox
@@ -130,7 +130,7 @@ CPPUNIT_PLUGIN_IMPLEMENT();\endverbatim
* - Add your tests
* - You're done !
*
- * See examples/simple/simple_plugin.dsp for an example.
+ * See examples/simple/simple_plugin.vcproj for an example.
*
* Notes to VC++ users:
* - you can run a post-build check on the plug-in. Add the following line to your
diff --git a/examples/ReadMe.txt b/examples/ReadMe.txt
index 2998cf2..2944f5f 100644
--- a/examples/ReadMe.txt
+++ b/examples/ReadMe.txt
@@ -1,7 +1,7 @@
-simple/simple.dsp: A simple CppUnit's example. Basic TextTestRunner and a single 'standard'
+simple/simple.vcproj: A simple CppUnit's example. Basic TextTestRunner and a single 'standard'
TestFixture. A good starting point
-simple/simple_plugin.dsp: Like 'simple', but creates a test plug-in. The test plug-in can
+simple/simple_plugin.vcproj: Like 'simple', but creates a test plug-in. The test plug-in can
be run with DllPlugInRunner.
hierarchy/: A simple example that demonstrate the use of helper macros with template