From c211d97ecb351254a1020f2a9eecd47e65ad5484 Mon Sep 17 00:00:00 2001 From: kinichiro Date: Sat, 4 Dec 2021 10:49:59 +0900 Subject: 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. --- apps/openssl/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/openssl') 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") endif() add_executable(openssl ${OPENSSL_SRC}) +target_include_directories(openssl PUBLIC ../../include) target_include_directories(openssl PRIVATE . ../../include/compat) target_link_libraries(openssl ${OPENSSL_LIBS}) -- cgit v1.2.3-55-g6feb