[NRF] Fixed library load error

This commit is contained in:
Sukchan Lee
2022-08-26 10:57:11 +09:00
parent 83a20b82c7
commit 9b10d70c77
52 changed files with 59 additions and 125 deletions

View File

@@ -38,11 +38,11 @@ libapp = library('ogsapp',
version : libogslib_version,
c_args : '-DOGS_APP_COMPILATION',
include_directories : [libapp_inc, libinc],
dependencies : [libproto_dep, yaml_dep],
dependencies : [libcore_dep, yaml_dep],
install : true)
libapp_dep = declare_dependency(
link_with : libapp,
include_directories : [libapp_inc, libinc],
dependencies : [libproto_dep, yaml_dep],
dependencies : [libcore_dep, yaml_dep],
)

View File

@@ -20,7 +20,7 @@
#ifndef OGS_APP_H
#define OGS_APP_H
#include "ogs-proto.h"
#include "proto/ogs-proto.h"
#define OGS_APP_INSIDE