Solve challenge 3

This commit is contained in:
Dimitri Lozeve 2020-06-02 22:37:52 +02:00
parent 55d39b8625
commit 5a30f34558
2 changed files with 67 additions and 0 deletions

View file

@ -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)