mirror of
https://github.com/walterschell/Lua.git
synced 2024-11-10 01:01:46 +00:00
Remove libm from emcripten builds
This commit is contained in:
parent
7f19c453f6
commit
11ca778bb1
2
.github/workflows/build-emscripten.yml
vendored
2
.github/workflows/build-emscripten.yml
vendored
@ -33,5 +33,5 @@ jobs:
|
||||
working-directory: ${{github.workspace}}/build
|
||||
shell: bash
|
||||
# Execute the build. You can specify a specific target with "--target <NAME>"
|
||||
run: emcmake cmake --build . --config $BUILD_TYPE
|
||||
run: cmake --build . --config $BUILD_TYPE
|
||||
|
||||
|
@ -39,18 +39,21 @@ target_include_directories(lua_static PUBLIC "include")
|
||||
if(UNIX)
|
||||
set(LUA_DEFINITIONS)
|
||||
|
||||
find_library(LIBM m)
|
||||
#TODO: Redo this with find_package
|
||||
if(NOT LIBM)
|
||||
message(FATAL_ERROR "libm not found and requred by lua")
|
||||
endif()
|
||||
target_link_libraries(lua_static INTERFACE ${LIBM})
|
||||
if(NOT EMSCRIPTEN)
|
||||
find_library(LIBM m)
|
||||
#TODO: Redo this with find_package
|
||||
if(NOT LIBM)
|
||||
message(FATAL_ERROR "libm not found and requred by lua")
|
||||
endif()
|
||||
target_link_libraries(lua_static INTERFACE ${LIBM})
|
||||
|
||||
list(APPEND LUA_DEFINITIONS LUA_USE_POSIX)
|
||||
if(LUA_SUPPORT_DL)
|
||||
target_compile_definitions(lua_static PRIVATE "LUA_USE_DLOPEN")
|
||||
target_link_libraries(lua_static INTERFACE dl)
|
||||
list(APPEND LUA_DEFINITIONS LUA_USE_POSIX)
|
||||
if(LUA_SUPPORT_DL)
|
||||
target_compile_definitions(lua_static PRIVATE "LUA_USE_DLOPEN")
|
||||
target_link_libraries(lua_static INTERFACE dl)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
target_compile_definitions(lua_static
|
||||
PUBLIC ${LUA_DEFINITIONS}
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user