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:
parent
2573df9727
commit
f5cf6c1b2c
5 changed files with 9 additions and 10 deletions
|
@ -85,7 +85,8 @@ conf.set('HIDPI_SUPPORT', get_option('hidpi_support'))
|
||||||
|
|
||||||
configure_file(configuration: conf, output: 'config.h')
|
configure_file(configuration: conf, output: 'config.h')
|
||||||
|
|
||||||
executable('scrcpy', src, dependencies: dependencies, install: true)
|
src_dir = include_directories('src')
|
||||||
|
executable('scrcpy', src, dependencies: dependencies, include_directories: src_dir, install: true)
|
||||||
|
|
||||||
|
|
||||||
### TESTS
|
### TESTS
|
||||||
|
@ -96,8 +97,6 @@ tests = [
|
||||||
['test_strutil', ['tests/test_strutil.c', 'src/strutil.c']],
|
['test_strutil', ['tests/test_strutil.c', 'src/strutil.c']],
|
||||||
]
|
]
|
||||||
|
|
||||||
src_dir = include_directories('src')
|
|
||||||
|
|
||||||
foreach t : tests
|
foreach t : tests
|
||||||
exe = executable(t[0], t[1], include_directories: src_dir, dependencies: dependencies)
|
exe = executable(t[0], t[1], include_directories: src_dir, dependencies: dependencies)
|
||||||
test(t[0], exe)
|
test(t[0], exe)
|
||||||
|
|
|
@ -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 "../../net.h"
|
#include "net.h"
|
||||||
|
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "../../command.h"
|
#include "command.h"
|
||||||
|
|
||||||
#include "../../log.h"
|
#include "log.h"
|
||||||
#include "../../strutil.h"
|
#include "strutil.h"
|
||||||
|
|
||||||
HANDLE cmd_execute(const char *path, const char *const argv[]) {
|
HANDLE cmd_execute(const char *path, const char *const argv[]) {
|
||||||
STARTUPINFO si;
|
STARTUPINFO si;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include "../../net.h"
|
#include "net.h"
|
||||||
|
|
||||||
#include "../../log.h"
|
#include "log.h"
|
||||||
|
|
||||||
SDL_bool net_init(void) {
|
SDL_bool net_init(void) {
|
||||||
WSADATA wsa;
|
WSADATA wsa;
|
||||||
|
|
Loading…
Reference in a new issue