Include source root directory

All headers and sources are in src/. To avoid using relative includes
from subdirectories ("../../"), include the source root directory.
This commit is contained in:
Romain Vimont
2018-03-20 14:03:28 +01:00
parent 2573df9727
commit f5cf6c1b2c
5 changed files with 9 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
#include "../../command.h"
#include "command.h"
#include "../../log.h"
#include "../../strutil.h"
#include "log.h"
#include "strutil.h"
HANDLE cmd_execute(const char *path, const char *const argv[]) {
STARTUPINFO si;