diff options
author | Ben Reynwar <ben@reynwar.net> | 2013-05-10 01:17:21 -0700 |
---|---|---|
committer | Ben Reynwar <ben@reynwar.net> | 2013-05-10 01:17:21 -0700 |
commit | af76f9509ae97f04ef6b77a3f63e2650dc2b66c8 (patch) | |
tree | 2b5ad689efd3cb2f387dfc61d81c8f6364b92b38 /gnuradio-runtime/include/gr_constants.h | |
parent | 72948e9a4031f8d779a70f73e6e6a0014d1de326 (diff) | |
parent | 3e052d303874a07237c4e0c31eef3f7f7a192835 (diff) |
Merge branch 'next' into next_docs
Diffstat (limited to 'gnuradio-runtime/include/gr_constants.h')
-rw-r--r-- | gnuradio-runtime/include/gr_constants.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnuradio-runtime/include/gr_constants.h b/gnuradio-runtime/include/gr_constants.h index 3534166bc0..38ad858b20 100644 --- a/gnuradio-runtime/include/gr_constants.h +++ b/gnuradio-runtime/include/gr_constants.h @@ -26,27 +26,27 @@ #include <string> /*! - * \brief return ./configure --prefix argument. Typically /usr/local + * \brief return CMAKE_INSTALL_PREFIX. Typically /usr/local */ GR_RUNTIME_API const std::string gr_prefix(); /*! - * \brief return ./configure --sysconfdir argument. Typically $prefix/etc or /etc + * \brief return SYSCONFDIR. Typically ${CMAKE_INSTALL_PREFIX}/etc or /etc */ GR_RUNTIME_API const std::string gr_sysconfdir(); /*! - * \brief return preferences file directory. Typically $sysconfdir/etc/conf.d + * \brief return preferences file directory. Typically ${SYSCONFDIR}/etc/conf.d */ GR_RUNTIME_API const std::string gr_prefsdir(); /*! - * \brief return date/time of build, as set when 'bootstrap' is run + * \brief return date/time of build, as set when 'cmake' is run */ GR_RUNTIME_API const std::string gr_build_date(); /*! - * \brief return version string defined in configure.ac + * \brief return version string defined by cmake (GrVersion.cmake) */ GR_RUNTIME_API const std::string gr_version(); |