Mercurial > trustbridge
annotate common/CMakeLists.txt @ 405:35d6b371ba63
Add License header for CMake and shell scripts
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 16 Apr 2014 13:30:24 +0000 |
parents | 824ef90a6721 |
children | ac9e95ef6966 |
rev | line source |
---|---|
405
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
1 # Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik |
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
2 # Software engineering by Intevation GmbH |
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
3 # |
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
4 # This file is Free Software under the GNU GPL (v>=2) |
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
5 # and comes with ABSOLUTELY NO WARRANTY! |
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
6 # See LICENSE.txt for details. |
35d6b371ba63
Add License header for CMake and shell scripts
Andre Heinecke <aheinecke@intevation.de>
parents:
321
diff
changeset
|
7 |
102
c879a709310d
Add static common library
Andre Heinecke <aheinecke@intevation.de>
parents:
diff
changeset
|
8 set (m13_common_src |
259
20d515604daa
Added new module with helper functions to parse certs.
Sascha Wilde <wilde@intevation.de>
parents:
146
diff
changeset
|
9 certhelp.c |
102
c879a709310d
Add static common library
Andre Heinecke <aheinecke@intevation.de>
parents:
diff
changeset
|
10 listutil.c |
260 | 11 logging.c |
259
20d515604daa
Added new module with helper functions to parse certs.
Sascha Wilde <wilde@intevation.de>
parents:
146
diff
changeset
|
12 portpath.c |
102
c879a709310d
Add static common library
Andre Heinecke <aheinecke@intevation.de>
parents:
diff
changeset
|
13 strhelp.c |
321
824ef90a6721
Move is_elevated into common/util.c file for better reuse
Andre Heinecke <aheinecke@intevation.de>
parents:
260
diff
changeset
|
14 util.c |
102
c879a709310d
Add static common library
Andre Heinecke <aheinecke@intevation.de>
parents:
diff
changeset
|
15 ) |
c879a709310d
Add static common library
Andre Heinecke <aheinecke@intevation.de>
parents:
diff
changeset
|
16 |
c879a709310d
Add static common library
Andre Heinecke <aheinecke@intevation.de>
parents:
diff
changeset
|
17 add_library(m13_common STATIC ${m13_common_src}) |