[cmake-commits] king committed TwoCustomSrc.c NONE 1.1 two-test.h.in NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Apr 4 14:50:37 EDT 2007


Update of /cvsroot/CMake/CMake/Tests/Dependency/Two
In directory public:/mounts/ram/cvs-serv1900

Added Files:
	TwoCustomSrc.c two-test.h.in 
Log Message:
BUG: Fix utility dependencies for static libraries in VS generators.  This addresses bug#4789.


--- NEW FILE: two-test.h.in ---
extern void ThreeFunction();

--- NEW FILE: TwoCustomSrc.c ---
extern void NoFunction();

/* Provide a function that is supposed to be found in the Three
   library.  If Two links to TwoCustom then TwoCustom will come before
   Three and this symbol will be used.  Since NoFunction is not
   defined, that will cause a link failure.  */
void ThreeFunction()
{
  NoFunction();
}



More information about the Cmake-commits mailing list