diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-04 10:49:59 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-04 14:36:39 +0900 |
commit | c211d97ecb351254a1020f2a9eecd47e65ad5484 (patch) | |
tree | 49a84019df276ce5d3cc552890dcb24cd8503133 /tests | |
parent | f2026bb3246cb45bb2fe0d3d93461149862d8d0b (diff) | |
download | portable-c211d97ecb351254a1020f2a9eecd47e65ad5484.tar.gz portable-c211d97ecb351254a1020f2a9eecd47e65ad5484.tar.bz2 portable-c211d97ecb351254a1020f2a9eecd47e65ad5484.zip |
Remove unneeded target_include_directories with cmake
This could remove recurring of the same statement for include directories.
Instead of this removals, apps/* and tests should have include path that
had been provided by INTERFACE_INCLUDE_DIRECTORIES of target libs and
internal static libs.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 4bbc512..d3725d1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -6,6 +6,7 @@ include_directories( | |||
6 | ../ssl | 6 | ../ssl |
7 | ../apps/openssl | 7 | ../apps/openssl |
8 | ../apps/openssl/compat | 8 | ../apps/openssl/compat |
9 | ../include | ||
9 | ../include/compat | 10 | ../include/compat |
10 | ) | 11 | ) |
11 | 12 | ||