diff options
author | José Fonseca <jfonseca@vmware.com> | 2013-02-06 09:06:02 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2013-02-06 09:09:04 +0000 |
commit | f232fa4d65b50d33f3e2c7721564e8ef57208880 (patch) | |
tree | 9dfd24e930552b95abfa57cbc2de274716ac21a6 /.gitignore | |
parent | 42a80f99c27f0d4dee6480ae2011ec364f2ccd04 (diff) |
cmake: Allow to generate a tarball/zip with the binaries, scripts, data.
It doesn't make much sense to package piglit or install on machines, due
to the frequency piglit tests are added/changed.
However, binary packages are still useful for distributed testing where
the binaries are built on one machine, and then passed to (sometimes
other teams) for the actual testing.
This patch allows one to conveniently generate such packages, simply by
doing
make package
Then one can run piglit by unpacking the package elsewhere, set the
PIGLIT_SOURCE_DIR and LD_LIBRARY_PATH accordingly, and run piglit scripts
as usual.
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 911c26666..65ece5da3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,20 @@ .*.sw? *.pyc +*.tar.bz2 +*.zip *~ /.ninja_log /build.ninja /rules.ninja +_CPack_Packages + bin lib CMakeFiles +CPackConfig.cmake +CPackSourceConfig.cmake Makefile cmake_install.cmake CMakeCache.txt |