Merge pull request #14214 from JoshuaVandaele/cmake-nonbreaking-improvements

CMake: Various improvements
This commit is contained in:
Dentomologist
2026-01-25 18:33:46 -08:00
committed by GitHub
9 changed files with 45 additions and 349 deletions
+3
View File
@@ -20,3 +20,6 @@ target_link_libraries(implot
PRIVATE imgui
PRIVATE fmt::fmt
)
# https://github.com/epezent/implot/pull/565
target_compile_options(implot PRIVATE -include "${CMAKE_CURRENT_SOURCE_DIR}/implot_isnan_fix.h")
+5
View File
@@ -0,0 +1,5 @@
#pragma once
#include <cmath>
using std::isnan;