Browse Source

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.
Brad King 16 years ago
parent
commit
61367c69d7
2 changed files with 1 additions and 1 deletions
  1. 1 1
      Tests/ExportImport/Export/CMakeLists.txt
  2. 0 0
      Tests/ExportImport/Export/testLib6c.c

+ 1 - 1
Tests/ExportImport/Export/CMakeLists.txt

@@ -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)

+ 0 - 0
Tests/ExportImport/Export/testLib6.c → Tests/ExportImport/Export/testLib6c.c