Commit 2720b38f authored by garciay's avatar garciay
Browse files

Compile project on Ubuntu 16.04.3 LTS

parent 51bbb14a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ int certificates_loader::build_path(const std::string& p_root_directory) {
  // Build full path
  if (!p_root_directory.empty()) {
    _full_path = p_root_directory;
    if (!std::experimental::filesystem::is_directory(_full_path)) {
    if (!std::experimental::filesystem::exists(_full_path) || !std::experimental::filesystem::is_directory(_full_path)) {
      // Create directory
      if (!std::experimental::filesystem::create_directory(_full_path)) {
        _full_path = "./";
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@

#include "converter.hh"

using namespace std;
#include "EtsiTs103097Codec_Certificate.hh"

#include "loggers.hh"
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@

#include "converter.hh"

using namespace std;
#include "certificates_loader.hh"

#include "EtsiTs103097Codec_Certificate.hh"