Skip to content

Commit

Permalink
fix some bug
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed May 15, 2024
1 parent 585d93e commit 83a7668
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion emmy_core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ target_sources(emmy_core PRIVATE

target_link_libraries(
emmy_core
PUBLIC emmy_debugger
PRIVATE emmy_debugger
)

install(
Expand Down
2 changes: 1 addition & 1 deletion emmy_debugger/src/api/lua_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#ifdef EMMY_USE_LUA_SOURCE
#if defined(EMMY_LUA_JIT)
#define LuaSwitchDo(__LuaJIT__,__Lua51__, __Lua52__ , __Lua53__, __Lua54__) return __LuaJIT__
#define LuaSwitchDo(__LuaJIT__,__Lua51__, __Lua52__ , __Lua53__, __Lua54__, __Default__) return __LuaJIT__
#elif defined(EMMY_LUA_51)
#define LuaSwitchDo(__LuaJIT__,__Lua51__, __Lua52__ , __Lua53__, __Lua54__,__Default__) return __Lua51__
#elif defined(EMMY_LUA_52)
Expand Down

0 comments on commit 83a7668

Please sign in to comment.