From a5d2619f7d7ea992e4b4d2e8d2bfbfbd5dbb86ed Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 23 Jan 2017 21:42:11 +1100 Subject: [PATCH] cxx: unconditionally link to stdc++fs if found --- nc_cxx.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nc_cxx.cmake b/nc_cxx.cmake index 7a0b891..fac5d79 100644 --- a/nc_cxx.cmake +++ b/nc_cxx.cmake @@ -36,7 +36,7 @@ if (NOT DEFINED __nc_cxx_stdcxxfs) endif () endif () -list (APPEND LIBS ${__nc_cxx_stdcxxfs}) +link_libraries (${__nc_cxx_stdcxxfs}) ###############################################################################