Move platform specific to sys/
Move unix/ and win/ to sys/, so that we can use android/ for android headers without confusion.
This commit is contained in:
parent
a919944372
commit
95591d2938
3 changed files with 4 additions and 4 deletions
|
@ -12,9 +12,9 @@ src = [
|
||||||
]
|
]
|
||||||
|
|
||||||
if host_machine.system() == 'windows'
|
if host_machine.system() == 'windows'
|
||||||
src += [ 'src/win/command.c' ]
|
src += [ 'src/sys/win/command.c' ]
|
||||||
else
|
else
|
||||||
src += [ 'src/unix/command.c' ]
|
src += [ 'src/sys/unix/command.c' ]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "../command.h"
|
#include "../../command.h"
|
||||||
|
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
|
@ -1,4 +1,4 @@
|
||||||
#include "../command.h"
|
#include "../../command.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "../strutil.h"
|
#include "../strutil.h"
|
Loading…
Reference in a new issue