From 4b8b63dab098a04f3aeffa0e3754a500b3e87918 Mon Sep 17 00:00:00 2001 From: Tushar Maheshwari Date: Sun, 25 Sep 2016 15:12:42 +0530 Subject: [PATCH] Appveyor configuration fixes - Includes changes to fix broken mac build --- appveyor.yml | 4 ++-- cmake/modules/FindUV.cmake | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b3d7dfd0..8571cfc0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ # can use variables like {build} and {branch} -version: 1.0.0 +version: 1.0.{build} image: Visual Studio 2015 @@ -20,7 +20,7 @@ before_build: build: parallel: true - project: "%BUILD_DIR%/uvw.sln" + project: build/uvw.sln verbosity: minimal test_script: "%BUILD_DIR%/runtests.bat" diff --git a/cmake/modules/FindUV.cmake b/cmake/modules/FindUV.cmake index aaf16660..c72bca5c 100644 --- a/cmake/modules/FindUV.cmake +++ b/cmake/modules/FindUV.cmake @@ -22,7 +22,7 @@ find_path( ) find_library( - UV_STATIC_LIBRARY NAMES libuv + UV_STATIC_LIBRARY NAMES libuv.a libuv PATHS ${BUILD_DEPS_DIR}/${UV_DEPS_DIR} PATH_SUFFIXES .libs Release NO_DEFAULT_PATH