Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

27 lignes
780 B

  1. # This file should be in the main folder of your project
  2. # Replace 'projectname' with the name of your project
  3. # Replace '1.0' with its version
  4. project('core_basic_window', 'c', version: '1.0',
  5. meson_version: '>= 0.39.1')
  6. # We want a C Compiler to be present
  7. cc = meson.get_compiler('c')
  8. # Find dependencies
  9. glfw_dep = dependency('glfw3')
  10. gl_dep = dependency('gl')
  11. openal_dep = dependency('openal')
  12. m_dep = cc.find_library('m', required : false)
  13. raylib_dep = cc.find_library('raylib', required : false)
  14. # List your source files here
  15. source_c = [
  16. '../../../examples/core/core_basic_window.c',
  17. ]
  18. # Build executable
  19. core_basic_window = executable('core_basic_window',
  20. source_c,
  21. dependencies : [ raylib_dep, glfw_dep, gl_dep, openal_dep, m_dep ],
  22. install : true)