aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2021-03-07 00:56:26 +0800
committerLi Jin <dragon-fly@qq.com>2021-03-07 00:56:26 +0800
commit34326185b0aaf63c0af8b0e8a07f928aa5a74eaf (patch)
treef3d2557de0ddc0f6f9a69f352ea2bdd90c2fefae
parent05283b77da4ba236f02b42d1205433f6b1fcb0d6 (diff)
downloadyuescript-34326185b0aaf63c0af8b0e8a07f928aa5a74eaf.tar.gz
yuescript-34326185b0aaf63c0af8b0e8a07f928aa5a74eaf.tar.bz2
yuescript-34326185b0aaf63c0af8b0e8a07f928aa5a74eaf.zip
try to fix issue #42.
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d323b6c..ce5a7f7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,7 +18,7 @@ IF(LUA_EXEC_NAME STREQUAL "luajit")
18 NO_DEFAULT_PATH) 18 NO_DEFAULT_PATH)
19ELSEIF(LUA_EXEC_NAME MATCHES "lua.*") 19ELSEIF(LUA_EXEC_NAME MATCHES "lua.*")
20 FIND_LIBRARY(LUA_LIBRARIES 20 FIND_LIBRARY(LUA_LIBRARIES
21 NAMES lua lua54 lua53 lua52 lua51 liblua liblua54 liblua53 liblua52 liblua51 21 NAMES lua lua54 lua53 lua52 lua51 liblua liblua54 liblua53 liblua52 liblua51 liblua5.4 liblua5.3 liblua5.2 liblua5.1
22 PATHS ${LUA_INCDIR}/../lib ${LUA_INCDIR}/../../lib 22 PATHS ${LUA_INCDIR}/../lib ${LUA_INCDIR}/../../lib
23 NO_DEFAULT_PATH) 23 NO_DEFAULT_PATH)
24ENDIF() 24ENDIF()
diff --git a/README.md b/README.md
index 3fd67f2..2bbd979 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Moonscript is a language that compiles to Lua. Since original Moonscript has bee
8 8
9So Yuescript is a new code base for pushing the language to go forward and being a playground to try introducing new language syntax or programing paradigms to make Moonscript language more expressive and productive. 9So Yuescript is a new code base for pushing the language to go forward and being a playground to try introducing new language syntax or programing paradigms to make Moonscript language more expressive and productive.
10 10
11Yue (月) is the name of Moon in Chinese and it's pronounced as [jyɛ]. 11Yue (月) is the name of moon in Chinese and it's pronounced as [jyɛ].
12 12
13 13
14## Features 14## Features