From c1ef88d9740ee539df1691a37631bba227c9b90d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nick=20=C3=98stergaard?= Date: Fri, 19 Jun 2015 20:32:55 +0200 Subject: [PATCH] Fix APPDATA environment variablt syntax for cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca7fe5ef..f627152c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ if( UNIX ) CACHE PATH "Location of user specifig KiCad config files" ) endif() elseif( MINGW ) - set( KICAD_USER_CONFIG_DIR $ENV{%APPDATA%}/kicad + set( KICAD_USER_CONFIG_DIR $ENV{APPDATA}/kicad CACHE PATH "Location of user specifig KiCad config files" ) endif()