parent
d84d70fa9a
commit
51827d4484
7 changed files with 40 additions and 7 deletions
@ -0,0 +1,2 @@ |
||||
dib/dab/dub/prog |
||||
some/dir/sample.h |
@ -0,0 +1,4 @@ |
||||
project('custom install dirs', 'c') |
||||
|
||||
executable('prog', 'prog.c', install : true, install_dir : 'dib/dab/dub') |
||||
headers('sample.h', install_dir : 'some/dir') |
@ -0,0 +1,3 @@ |
||||
int main(int argc, char **arv) { |
||||
return 0; |
||||
} |
@ -0,0 +1,6 @@ |
||||
#ifndef SAMPLE_H |
||||
#define SAMPLE_H |
||||
|
||||
int wackiness(); |
||||
|
||||
#endif |
Loading…
Reference in new issue