Skip to content
Snippets Groups Projects
Commit 9f99a2d7 authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Move library files down a directory

parent 1e61ffd7
No related branches found
No related tags found
No related merge requests found
lib_utils = library('utils', 'utils.c')
File moved
File moved
......@@ -3,13 +3,16 @@ project('stdlib', 'c')
cc = meson.get_compiler('c')
libm = cc.find_library('m')
utils = library('utils', 'utils.c')
glib_dep = dependency('glib-2.0', version: '>= 2.16')
openmp_dep = dependency('openmp')
thread_dep = dependency('threads')
incdir = include_directories('lib')
subdir('lib')
executable('add', 'add.c')
executable('add2', 'add2.c', link_with: utils)
executable('add2', 'add2.c', link_with: lib_utils, include_directories: incdir)
executable('angle', 'angle.c', dependencies: libm)
executable('binary', 'binary.c')
executable('complex', 'complex.c', dependencies: libm)
......
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment