summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Drahoš <drahosp@gmail.com>2011-03-31 22:07:06 +0200
committerPeter Drahoš <drahosp@gmail.com>2011-03-31 22:07:06 +0200
commitd92ed0b4a64eda1914bd53b6b690840387ef1487 (patch)
tree675ebf1ce94bf2608f115f3a2d865a4dafc2cbbc
parentc3cca4aa87ccdaaf98c245e6017c9ff78a8c8fed (diff)
downloadlua-d92ed0b4a64eda1914bd53b6b690840387ef1487.tar.gz
Forgot to replace path separators
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c86f54b..4375f22 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -48,7 +48,8 @@ if ( WIN32 AND NOT CYGWIN )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_DIR ${LUA_DIR} )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_LDIR ${LUA_LDIR} )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_CDIR ${LUA_CDIR} )
-
+ string ( REPLACE "/" ${LUA_DIRSEP} LUA_PATH_DEFAULT ${LUA_PATH_DEFAULT} )
+ string ( REPLACE "/" ${LUA_DIRSEP} LUA_CPATH_DEFAULT ${LUA_CPATH_DEFAULT} )
else ()
# Posix systems (incl. Cygwin)
option ( LUA_USE_POSIX "Use POSIX functionality." ON )