diff options
author | Matthew Harmsen <mharmsen@redhat.com> | 2012-02-23 18:42:02 -0800 |
---|---|---|
committer | Matthew Harmsen <mharmsen@redhat.com> | 2012-02-23 18:42:02 -0800 |
commit | 84ba9e3cb3bbdc89852aaf70185980ce2d9e325a (patch) | |
tree | 1a6968ba40c8798420f34fe3e9bcd7d929fcb3c6 /pki/base | |
parent | 1c4c45a87e62a74b68b7d235e94cfe5dc21b8da2 (diff) | |
download | pki-84ba9e3cb3bbdc89852aaf70185980ce2d9e325a.tar.gz pki-84ba9e3cb3bbdc89852aaf70185980ce2d9e325a.tar.xz pki-84ba9e3cb3bbdc89852aaf70185980ce2d9e325a.zip |
Exclude junit tests from non-java components
PKI TRAC Ticket #104 - exclude the java-based junit testing infrastructure
from non-java components in order to build within a 'mock' environment
Diffstat (limited to 'pki/base')
-rw-r--r-- | pki/base/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pki/base/CMakeLists.txt b/pki/base/CMakeLists.txt index cd58e3037..b5ea9b9fb 100644 --- a/pki/base/CMakeLists.txt +++ b/pki/base/CMakeLists.txt @@ -2,8 +2,8 @@ project(base) # The order is important! # add_subdirectory(osutil) -add_subdirectory(test) if (APPLICATION_FLAVOR_PKI_CORE) + add_subdirectory(test) add_subdirectory(setup) add_subdirectory(symkey) add_subdirectory(native-tools) @@ -24,8 +24,10 @@ if (APPLICATION_FLAVOR_PKI_TPS) add_subdirectory(tps) endif (APPLICATION_FLAVOR_PKI_TPS) if (APPLICATION_FLAVOR_PKI_CONSOLE) + add_subdirectory(test) add_subdirectory(console) endif (APPLICATION_FLAVOR_PKI_CONSOLE) if (APPLICATION_FLAVOR_PKI_MIGRATE) + add_subdirectory(test) add_subdirectory(migrate) endif (APPLICATION_FLAVOR_PKI_MIGRATE) |