fix(headers): moved all headers to fourdst/

This commit is contained in:
2025-06-22 04:50:50 -04:00
parent 3821639053
commit 84e8cdf083
6 changed files with 10 additions and 11 deletions

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# *********************************************************************** # # *********************************************************************** #
project('libconstants', 'cpp', version: 'v1.0.5', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0') project('libconstants', 'cpp', version: 'v1.0.6', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
# Add default visibility for all C++ targets # Add default visibility for all C++ targets
add_project_arguments('-fvisibility=default', language: 'cpp') add_project_arguments('-fvisibility=default', language: 'cpp')

View File

@@ -27,7 +27,7 @@
#include <set> #include <set>
#include "const.h" #include "fourdst/constants/const.h"
#include "embedded_constants.h" // Generated at build time by meson #include "embedded_constants.h" // Generated at build time by meson
namespace fourdst::constant { namespace fourdst::constant {

View File

@@ -1,24 +1,24 @@
# Define the library # Define the library
const_sources = files( const_sources = files(
'private/const.cpp', 'lib/const.cpp',
) )
const_headers = files(
'public/const.h'
)
# Define the libconst library so it can be linked against by other parts of the build system # Define the libconst library so it can be linked against by other parts of the build system
libconst = library('const', libconst = library('const',
const_sources, const_sources,
include_directories: include_directories('public'), include_directories: include_directories('include'),
cpp_args: ['-fvisibility=default'], cpp_args: ['-fvisibility=default'],
dependencies: [const_data_dep], dependencies: [const_data_dep],
install : true) install : true)
const_dep = declare_dependency( const_dep = declare_dependency(
include_directories: include_directories('public'), include_directories: include_directories('include'),
link_with: libconst, link_with: libconst,
) )
# Make headers accessible # Make headers accessible
const_headers = files(
'include/fourdst/constants/const.h'
)
install_headers(const_headers, subdir : 'fourdst/fourdst/constants') install_headers(const_headers, subdir : 'fourdst/fourdst/constants')

View File

@@ -1,11 +1,12 @@
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include "const.h"
#include <iostream> #include <iostream>
#include <string> #include <string>
#include <vector> #include <vector>
#include <set> #include <set>
#include <sstream> #include <sstream>
#include "fourdst/constants/const.h"
/** /**
* @file constTest.cpp * @file constTest.cpp
* @brief Unit tests for the const class. * @brief Unit tests for the const class.

View File

@@ -12,8 +12,6 @@ foreach test_file : test_sources
exe_name, exe_name,
test_file, test_file,
dependencies: [gtest_dep, const_dep, gtest_main], dependencies: [gtest_dep, const_dep, gtest_main],
include_directories: include_directories('../../src/constants/public'),
link_with: libconst, # Link the dobj library
install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly
) )