diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2007-08-22 14:56:39 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2007-08-22 14:56:39 (GMT) |
commit | 2f47d558d12dcf7f4ac8b8300ecbfe09fa7a6c2f (patch) | |
tree | 4c70f725d534bfdc85a6039a621899975c214876 /windows | |
parent | 10dcf4b0e1efd406d1aab563313908dc5c152d49 (diff) | |
download | hdf5-2f47d558d12dcf7f4ac8b8300ecbfe09fa7a6c2f.zip hdf5-2f47d558d12dcf7f4ac8b8300ecbfe09fa7a6c2f.tar.gz hdf5-2f47d558d12dcf7f4ac8b8300ecbfe09fa7a6c2f.tar.bz2 |
[svn-r14099] Purpose: Fix Windows libtest_cstubdll output directory
Description:
Previously, the libtest_cstubdll project was creating the DLL in the project directory, rather than the Output directory. This was a simple typo, and not caught previously because past builds had the DLL installed. Cleaning up our batch files will make this easier to catch in the future.
Tested:
VS2005 on WinXP x64
Diffstat (limited to 'windows')
-rw-r--r-- | windows/fortran/test/libtest_cstubdll/libtest_cstubdll.vcproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/windows/fortran/test/libtest_cstubdll/libtest_cstubdll.vcproj b/windows/fortran/test/libtest_cstubdll/libtest_cstubdll.vcproj index be3e247..fc91703 100644 --- a/windows/fortran/test/libtest_cstubdll/libtest_cstubdll.vcproj +++ b/windows/fortran/test/libtest_cstubdll/libtest_cstubdll.vcproj @@ -78,7 +78,7 @@ />
<Tool
Name="VCLinkerTool"
- OutputFile="libtest_cstubdll.dll"
+ OutputFile="$(OutDir)\libtest_cstubdll.dll"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\../../../../fortran/test/libtest_cstubdll/Release/libtest_cstubdll.pdb"
@@ -172,7 +172,7 @@ />
<Tool
Name="VCLinkerTool"
- OutputFile="libtest_cstubdll.dll"
+ OutputFile="$(OutDir)\libtest_cstubdll.dll"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\../../../../fortran/test/libtest_cstubdll/Release/libtest_cstubdll.pdb"
@@ -265,7 +265,7 @@ />
<Tool
Name="VCLinkerTool"
- OutputFile="libtest_cstubddll.dll"
+ OutputFile="$(OutDir)\libtest_cstubddll.dll"
LinkIncremental="1"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
@@ -359,7 +359,7 @@ />
<Tool
Name="VCLinkerTool"
- OutputFile="libtest_cstubddll.dll"
+ OutputFile="$(OutDir)\libtest_cstubddll.dll"
LinkIncremental="1"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
|