From 34c9d0f6da8ad130450f336d4280b1ad9610c102 Mon Sep 17 00:00:00 2001 From: Diaz Urbaneja Victor Diego Alenjandro Date: Sat, 9 Jan 2021 23:17:04 -0400 Subject: [PATCH] update meson.build --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 27287a8..34ebc39 100644 --- a/meson.build +++ b/meson.build @@ -4,6 +4,7 @@ project('lite', c_compiler = meson.get_compiler('c') sdl2_dep = c_compiler.find_library('SDL2') +m_dep = c_compiler.find_library('m') args = '-Wall -O3 -g -std=gnu11 -fno-strict-aliasing ' sources = [ @@ -53,5 +54,5 @@ executable('lite', sources, cpp_args: args + '-DLUA_USE_POSIX', include_directories: include_directories('src'), - dependencies: sdl2_dep, + dependencies: [sdl2_dep,m_dep], install: false)