summaryrefslogtreecommitdiff
path: root/tools/policy_table_validator
diff options
context:
space:
mode:
authorKozoriz <kozorizandriy@gmail.com>2016-05-11 10:05:02 +0300
committerKozoriz <kozorizandriy@gmail.com>2016-05-17 16:34:03 +0300
commit9dba2aecd2a4c7b4054067deb413311c44c80cac (patch)
tree98a107e7f42a1b8979b8f0116a3368d2672f5744 /tools/policy_table_validator
parentc238ca69b22082e6a35a0a515fb75ee35966a5d9 (diff)
downloadsdl_core-9dba2aecd2a4c7b4054067deb413311c44c80cac.tar.gz
Correct project structure in Policy component
FIles moved to correct directory CMakeLists files corrected Headers corrected
Diffstat (limited to 'tools/policy_table_validator')
-rw-r--r--tools/policy_table_validator/CMakeLists.txt9
-rw-r--r--tools/policy_table_validator/main.cpp2
2 files changed, 5 insertions, 6 deletions
diff --git a/tools/policy_table_validator/CMakeLists.txt b/tools/policy_table_validator/CMakeLists.txt
index 2a372d7ffa..7d9194e473 100644
--- a/tools/policy_table_validator/CMakeLists.txt
+++ b/tools/policy_table_validator/CMakeLists.txt
@@ -1,16 +1,15 @@
#set( CMAKE_VERBOSE_MAKEFILE on )
include_directories(
- ${CMAKE_SOURCE_DIR}/src/components/policy/src/policy/
- ${CMAKE_SOURCE_DIR}/src/components/rpc_base/include/
- ${CMAKE_SOURCE_DIR}/src/components/utils/include/
+ ${CMAKE_SOURCE_DIR}/src/components/policy/include
+ ${CMAKE_SOURCE_DIR}/src/components/rpc_base/include/
+ ${CMAKE_SOURCE_DIR}/src/components/utils/include/
${JSONCPP_INCLUDE_DIRECTORY}
)
link_directories (
- ${CMAKE_BINARY_DIR}/src/components/policy/src/policy/policy_table/table_struct/
- ${CMAKE_BINARY_DIR}/src/components/rpc_base/
+ ${CMAKE_BINARY_DIR}/src/components/rpc_base/
)
diff --git a/tools/policy_table_validator/main.cpp b/tools/policy_table_validator/main.cpp
index 16454ca128..509182edbf 100644
--- a/tools/policy_table_validator/main.cpp
+++ b/tools/policy_table_validator/main.cpp
@@ -1,6 +1,6 @@
#include <iostream>
#include <cstdlib>
-#include "policy_table/table_struct/types.h"
+#include "policy/policy_table/types.h"
#include "json/reader.h"
#include "utils/file_system.h"