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 /apps/openssl | |
| 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 'apps/openssl')
| -rw-r--r-- | apps/openssl/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/openssl/CMakeLists.txt b/apps/openssl/CMakeLists.txt index c5cfbe2..bb058e1 100644 --- a/apps/openssl/CMakeLists.txt +++ b/apps/openssl/CMakeLists.txt | |||
| @@ -77,6 +77,7 @@ if(CMAKE_SYSTEM_NAME MATCHES "Darwin") | |||
| 77 | endif() | 77 | endif() |
| 78 | 78 | ||
| 79 | add_executable(openssl ${OPENSSL_SRC}) | 79 | add_executable(openssl ${OPENSSL_SRC}) |
| 80 | target_include_directories(openssl PUBLIC ../../include) | ||
| 80 | target_include_directories(openssl PRIVATE . ../../include/compat) | 81 | target_include_directories(openssl PRIVATE . ../../include/compat) |
| 81 | target_link_libraries(openssl ${OPENSSL_LIBS}) | 82 | target_link_libraries(openssl ${OPENSSL_LIBS}) |
| 82 | 83 | ||
