mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-07-11 01:24:22 +02:00
CMake: Work around implot#565
This commit is contained in:
Vendored
+3
@@ -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")
|
||||
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#include <cmath>
|
||||
|
||||
using std::isnan;
|
||||
Reference in New Issue
Block a user