add test for target_include_directories #1818

This commit is contained in:
Niels Lohmann 2020-07-17 14:26:22 +02:00
parent a10d486e36
commit 2fd57d3ed1
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
4 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.1)
project(DummyImport CXX)
add_executable(with_private_target main.cpp)
target_include_directories(with_private_target PRIVATE ${nlohmann_json_source}/include)
set_target_properties(with_private_target PROPERTIES CXX_STANDARD 11)
add_executable(with_private_system_target main.cpp)
target_include_directories(with_private_system_target PRIVATE SYSTEM ${nlohmann_json_source}/include)
set_target_properties(with_private_system_target PROPERTIES CXX_STANDARD 11)

View file

@ -0,0 +1,8 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
{
nlohmann::json j;
return 0;
}