From 42b1575b7cba8f4f2e4f38ff1bbec4e393aa5078 Mon Sep 17 00:00:00 2001 From: Jared Duffey Date: Tue, 6 Feb 2024 22:12:03 -0500 Subject: [PATCH] ENH: Fixed cmake syntax warning (#850) Signed-off-by: Jared Duffey --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c5e2aed29..14248e6da6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -209,10 +209,10 @@ endif() # Force HDF5 1.10 API target_compile_definitions(simplnx PUBLIC "H5_USE_110_API") -target_compile_options( simplnx PUBLIC - $<$: "-ffp-contract=off"> - ) - +target_compile_options(simplnx + PUBLIC + $<$:-ffp-contract=off> +) if(SIMPLNX_ENABLE_MULTICORE) target_compile_definitions(simplnx PUBLIC "SIMPLNX_ENABLE_MULTICORE")