Remove libm from emcripten builds

This commit is contained in:
Walter Schell 2021-01-16 09:53:29 -05:00
parent 7f19c453f6
commit 11ca778bb1
2 changed files with 14 additions and 11 deletions

View File

@ -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

View File

@ -39,6 +39,7 @@ target_include_directories(lua_static PUBLIC "include")
if(UNIX)
set(LUA_DEFINITIONS)
if(NOT EMSCRIPTEN)
find_library(LIBM m)
#TODO: Redo this with find_package
if(NOT LIBM)
@ -51,6 +52,8 @@ if(UNIX)
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}
)