diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-04-10 21:33:10 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-04-10 21:33:10 (GMT) |
commit | 9d0a4b8a5f45a6c8884c1a386c21b39bda9c3739 (patch) | |
tree | 95db84ef2201d0d1fafa3b949178813bfaa7e85b /Tests/ComplexOneConfig/Executable | |
parent | b26be30740de0320258c1152d88aaeadb849b199 (diff) | |
download | CMake-9d0a4b8a5f45a6c8884c1a386c21b39bda9c3739.zip CMake-9d0a4b8a5f45a6c8884c1a386c21b39bda9c3739.tar.gz CMake-9d0a4b8a5f45a6c8884c1a386c21b39bda9c3739.tar.bz2 |
ENH: add a test to check if more than one post-build command can be attached. it fails right now.
Diffstat (limited to 'Tests/ComplexOneConfig/Executable')
-rw-r--r-- | Tests/ComplexOneConfig/Executable/complex.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/ComplexOneConfig/Executable/complex.cxx b/Tests/ComplexOneConfig/Executable/complex.cxx index 1415ce7..7afa821 100644 --- a/Tests/ComplexOneConfig/Executable/complex.cxx +++ b/Tests/ComplexOneConfig/Executable/complex.cxx @@ -541,12 +541,14 @@ int main() // ---------------------------------------------------------------------- // A post-build custom-command has been attached to the lib (see Library/). // It runs ${CREATE_FILE_EXE} which will create a file. + // It also copies that file again using CCOMMAND. // // WARNING: if you run 'complex' manually, this *will* fail, because // the file was removed the last time 'complex' was run, and it is // only created during a build. TestAndRemoveFile(BINARY_DIR "/Library/postbuild.txt"); + TestAndRemoveFile(BINARY_DIR "/Library/postbuild2.txt"); // ---------------------------------------------------------------------- // A custom target has been created (see Library/). |