COMP: Fix ExportImport testLib6 on VS6

The compiler does not support multiple source files differing only by
extension in one target.  This renames the C source file in the test.
This commit is contained in:
Brad King 2009-07-13 09:20:36 -04:00
parent 44eeda9a04
commit 61367c69d7
2 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ set_property(TARGET testLib4 PROPERTY FRAMEWORK 1)
add_library(testLib5 SHARED testLib5.c)
add_library(testLib6 STATIC testLib6.cxx testLib6.c)
add_library(testLib6 STATIC testLib6.cxx testLib6c.c)
# Work-around: Visual Studio 6 does not support per-target object files.
set(VS6)