====== Renaming library to ndn-cxx ======
Dependent applications should perform the following changes:
* all includes should be changed from <ndn-cpp-dev/...> to <ndn-cxx/...>
* documentation files/comments referring to ndn-cpp-dev should be
updated and refer to ndn-cxx
* if the app uses pkgconfig for dependency detection, 'libndn-cpp-dev'
should be replaced with 'libndn-cxx'. Example for waf users:
conf.check_cfg(package = 'libndn-cxx', args = ['--cflags', '--libs'],
uselib_store = 'NDN_CXX', mandatory = True)
Change-Id: I92d9ec7ff176b9fe8b4352bf04bbb32aa810422d
Refs: #1491
diff --git a/tests/security/identity-fixture.cpp b/tests/security/identity-fixture.cpp
index 420b15f..460d3b0 100644
--- a/tests/security/identity-fixture.cpp
+++ b/tests/security/identity-fixture.cpp
@@ -28,7 +28,7 @@
m_hasOldDefaultIdentity = false;
}
- m_newIdentity.set("/ndn-cpp-dev-test-identity");
+ m_newIdentity.set("/ndn-cxx-test-identity");
m_newIdentity.appendVersion();
// create the new identity and self-signed certificate
diff --git a/tests/wscript b/tests/wscript
index db65313..cbe5e88 100644
--- a/tests/wscript
+++ b/tests/wscript
@@ -10,7 +10,7 @@
features="cxx cxxprogram",
source=bld.path.ant_glob(['**/*.cpp'],
excl=['**/*-osx.cpp', '**/*-sqlite3.cpp']),
- use='ndn-cpp-dev',
+ use='ndn-cxx',
includes='.',
install_path=None,
)