From bfca3478cc113fb83fb9fdefa45aeefad3d0002d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 18 Apr 2016 14:02:49 -0600 Subject: [PATCH] build: link vis to libm, fixes build on Linux / GCC. --- vis/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vis/CMakeLists.txt b/vis/CMakeLists.txt index 7eb99d1e..864f2610 100644 --- a/vis/CMakeLists.txt +++ b/vis/CMakeLists.txt @@ -20,5 +20,5 @@ set(VIS_SOURCES add_executable(vis ${VIS_SOURCES}) target_link_libraries (vis ${CMAKE_THREAD_LIBS_INIT}) - +target_link_libraries (vis m) install(TARGETS vis RUNTIME DESTINATION bin)