From a4121f8b5a9552f5f913e111f7d555cf98f6d90f Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Mon, 2 Jul 2012 22:13:13 +0200 Subject: [PATCH] Set BIN_INSTALL_DIR to "." instead of an empty string on Windows and Mac OS. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19011bda6..056809526 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -132,10 +132,10 @@ if(APPLE AND "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr/local") endif() if(MINGW) - set(BIN_INSTALL_DIR "") + set(BIN_INSTALL_DIR ".") set(DATA_INSTALL_DIR "share") elseif(APPLE) - set(BIN_INSTALL_DIR "") + set(BIN_INSTALL_DIR ".") set(DATA_INSTALL_DIR "${PROGNAME}.app/Contents/Resources") else() set(BIN_INSTALL_DIR "bin")