Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ instead of src/ #5473

Merged
merged 9 commits into from
Apr 2, 2017
Prev Previous commit
Next Next commit
Fix scope for lua
  • Loading branch information
nerzhul committed Mar 31, 2017
commit 7a3ee484137cd35b76f9ae2b399e3a0ce99bdbd7
4 changes: 2 additions & 2 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ endif()

if(NOT USE_LUAJIT)
message(STATUS "LuaJIT not found, using bundled Lua.")
set(LUA_LIBRARY "lua")
set(LUA_INCLUDE_DIR "lua/src")
set(LUA_LIBRARY lua PARENT_SCOPE)
set(LUA_INCLUDE_DIR lua/src PARENT_SCOPE)
add_subdirectory(lua)
endif()

Expand Down