Solve challenge 3
This commit is contained in:
parent
55d39b8625
commit
5a30f34558
2 changed files with 67 additions and 0 deletions
|
@ -1,4 +1,8 @@
|
|||
project('cryptopals', 'c')
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
m_dep = cc.find_library('m', required : false)
|
||||
|
||||
executable('ex01', ['ex01/main.c', 'utils.c'])
|
||||
executable('ex02', ['ex02/main.c', 'utils.c'])
|
||||
executable('ex03', ['ex03/main.c', 'utils.c'], dependencies: m_dep)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue