Skip to content

Commit efa1950

Browse files
committed
Fixed cmake warning
Signed-off-by: Jared Duffey <jared.duffey@bluequartz.net>
1 parent 8890c1b commit efa1950

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Source/EbsdLib/SourceList.cmake

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,10 @@ endif()
167167
# with newer versions of Clang. Clang versions above verison 14 default
168168
# this to ON where as before it was OFF. This can have the effect of
169169
# changing outputs between clang versions.
170-
target_compile_options( ${PROJECT_NAME} PUBLIC
171-
$<$<CXX_COMPILER_ID:GNU,Clang,AppleClang,Intel>: "-ffp-contract=off">
172-
)
170+
target_compile_options(${PROJECT_NAME}
171+
PUBLIC
172+
$<$<CXX_COMPILER_ID:GNU,Clang,AppleClang,Intel>:-ffp-contract=off>
173+
)
173174

174175
LibraryProperties(${PROJECT_NAME} ${EXE_DEBUG_EXTENSION})
175176

0 commit comments

Comments
 (0)