Line data Source code
1 : // Copyright (c) 2023 Made to Order Software Corp. All Rights Reserved
2 : //
3 : // https://snapwebsites.org/project/versiontheca
4 : // contact@m2osw.com
5 : //
6 : // This program is free software: you can redistribute it and/or modify
7 : // it under the terms of the GNU General Public License as published by
8 : // the Free Software Foundation, either version 3 of the License, or
9 : // (at your option) any later version.
10 : //
11 : // This program is distributed in the hope that it will be useful,
12 : // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : // GNU General Public License for more details.
15 : //
16 : // You should have received a copy of the GNU General Public License
17 : // along with this program. If not, see <https://www.gnu.org/licenses/>.
18 :
19 : // self
20 : //
21 : #define CATCH_CONFIG_RUNNER
22 : #include "catch_main.h"
23 :
24 :
25 :
26 : // versiontheca
27 : //
28 : #include <versiontheca/version.h>
29 :
30 :
31 : // libexcept
32 : //
33 : //#include <libexcept/exception.h>
34 :
35 :
36 : // snapdev
37 : //
38 : //#include <snapdev/not_used.h>
39 : //#include <snapdev/mkdir_p.h>
40 :
41 :
42 : // C
43 : //
44 : //#include <sys/stat.h>
45 :
46 :
47 : // last include
48 : //
49 : #include <snapdev/poison.h>
50 :
51 :
52 :
53 :
54 : namespace SNAP_CATCH2_NAMESPACE
55 : {
56 :
57 :
58 :
59 :
60 :
61 : } // namespace SNAP_CATCH2_NAMESPACE
62 :
63 :
64 :
65 :
66 :
67 :
68 2 : int main(int argc, char * argv[])
69 : {
70 : return SNAP_CATCH2_NAMESPACE::snap_catch2_main(
71 : "versiontheca"
72 : , VERSIONTHECA_VERSION_STRING
73 : , argc
74 : , argv
75 : , nullptr
76 : , nullptr
77 : , nullptr
78 : , nullptr
79 2 : );
80 6 : }
81 :
82 :
83 : // vim: ts=4 sw=4 et
|