diff options
author | Raffi Enficiaud <raffi.enficiaud@mines-paris.org> | 2015-04-21 20:48:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-04-23 13:03:10 (GMT) |
commit | 75b0e1679c39ca824a4c49d9e1a2ae2b5f04ae06 (patch) | |
tree | ad0adcba48eb69edc50c2d2c9718f1434e6e1597 /Tests/CPackComponentsDEB/mylibapp.cpp | |
parent | fdfe4586a047d9b6cc64efdd22fbdc67e9f1193f (diff) | |
download | CMake-75b0e1679c39ca824a4c49d9e1a2ae2b5f04ae06.zip CMake-75b0e1679c39ca824a4c49d9e1a2ae2b5f04ae06.tar.gz CMake-75b0e1679c39ca824a4c49d9e1a2ae2b5f04ae06.tar.bz2 |
CPackDeb: Add basic package tests
Tests of generated component based deb packages with lintian and dpkg.
Also includes basic file name check.
Diffstat (limited to 'Tests/CPackComponentsDEB/mylibapp.cpp')
-rw-r--r-- | Tests/CPackComponentsDEB/mylibapp.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/CPackComponentsDEB/mylibapp.cpp b/Tests/CPackComponentsDEB/mylibapp.cpp new file mode 100644 index 0000000..a438ac7 --- /dev/null +++ b/Tests/CPackComponentsDEB/mylibapp.cpp @@ -0,0 +1,6 @@ +#include "mylib.h" + +int main() +{ + mylib_function(); +} |