diff options
author | rtk0c <[email protected]> | 2022-06-29 10:47:12 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-29 10:47:12 -0700 |
commit | 2cf952088d375ac8b2f45b144462af0953436cff (patch) | |
tree | d437c348cff8fa79729b8bd3367f3e7c25cd0f32 /3rdparty/iconfontheaders | |
parent | fad6a88a13ab1f888ab25ad0aae19c1d63aa0623 (diff) |
Convert CMake to use include directory inheritance through library targets
Diffstat (limited to '3rdparty/iconfontheaders')
-rw-r--r-- | 3rdparty/iconfontheaders/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/3rdparty/iconfontheaders/CMakeLists.txt b/3rdparty/iconfontheaders/CMakeLists.txt new file mode 100644 index 0000000..cd7535f --- /dev/null +++ b/3rdparty/iconfontheaders/CMakeLists.txt @@ -0,0 +1,5 @@ +add_library(icon-font-headers INTERFACE) +target_include_directories(icon-font-headers +INTERFACE + ${CMAKE_CURRENT_LIST_DIR} +) |