mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
ENH: Testing new target properties RUNTIME_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_DIRECTORY, and ARCHIVE_OUTPUT_DIRECTORY. This is an incremental fix for bug#2240 and bug#4210.
This commit is contained in:
@@ -320,12 +320,17 @@ extern "C" int NameConflictTest2();
|
||||
int main()
|
||||
{
|
||||
std::string lib = BINARY_DIR;
|
||||
lib += "/bin/";
|
||||
lib += "/lib/";
|
||||
#ifdef CMAKE_INTDIR
|
||||
lib += CMAKE_INTDIR;
|
||||
lib += "/";
|
||||
#endif
|
||||
std::string exe = lib;
|
||||
std::string exe = BINARY_DIR;
|
||||
exe += "/bin/";
|
||||
#ifdef CMAKE_INTDIR
|
||||
exe += CMAKE_INTDIR;
|
||||
exe += "/";
|
||||
#endif
|
||||
|
||||
#ifdef COMPLEX_TEST_CMAKELIB
|
||||
// Test a single character executable to test a: in makefiles
|
||||
|
||||
Reference in New Issue
Block a user