From 19be0906987b27df4e5ee8943accb4c4eb3f940f Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Fri, 29 May 2020 13:35:33 -0400 Subject: [PATCH] cmake syntax correction --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dbb8498..34104262 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,7 +49,7 @@ endif(MSVC) if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") link_libraries(m) elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - link_libraries((m) + link_libraries(m) endif() add_subdirectory(conversions)