From: APTX Date: Thu, 1 Feb 2018 15:00:08 +0000 (+0900) Subject: Fix non-windows build of runscript X-Git-Url: https://gitweb.tyo.aptx.org/?a=commitdiff_plain;h=2098814b3496b3e756ee30637f5536bf1d1eb829;p=localmylist.git Fix non-windows build of runscript --- diff --git a/runscript/CMakeLists.txt b/runscript/CMakeLists.txt index 0cf23e5..b973ea3 100644 --- a/runscript/CMakeLists.txt +++ b/runscript/CMakeLists.txt @@ -34,4 +34,7 @@ install(TARGETS runscript ARCHIVE DESTINATION lib${LIB_SUFFIX} RUNTIME DESTINATION bin ) -install(FILES $ DESTINATION bin OPTIONAL) + +if(WIN32) + install(FILES $ DESTINATION bin OPTIONAL) +endif()