You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
303 B

  1. project('raylib', 'c', version: '1.7.0',
  2. license: 'zlib',
  3. meson_version: '>= 0.39.1')
  4. cc = meson.get_compiler('c')
  5. glfw_dep = dependency('glfw3')
  6. gl_dep = dependency('gl')
  7. openal_dep = dependency('openal')
  8. x11_dep = dependency('x11')
  9. m_dep = cc.find_library('m', required : false)
  10. subdir('src')