From b54edf704e938cbf098a51dd77be31a87ec516c1 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 15 May 2022 16:20:30 -0600 Subject: [PATCH] vis: fix cmake typo --- vis/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vis/CMakeLists.txt b/vis/CMakeLists.txt index 4c911fef..d3dc8434 100644 --- a/vis/CMakeLists.txt +++ b/vis/CMakeLists.txt @@ -15,7 +15,7 @@ target_link_libraries(libvis PRIVATE common ${CMAKE_THREAD_LIBS_INIT} fmt::fmt) # FIXME: still needed? find_library(M_LIB m) if (M_LIB) - target_link_libraries (vis PRIVATE ${M_LIB}) + target_link_libraries(libvis PRIVATE ${M_LIB}) endif (M_LIB) add_executable(vis main.cc)