Files
OpenSpace/support/cmake/module_path.template
Alexander Bock 9cc4c595a8 Code Cleanup (#2191)
* constexpr const -> constexpr
* const char* -> std::string_view
2022-07-25 15:57:45 +02:00

20 lines
448 B
Plaintext

// This file has been auto-generated by CMake based on
// support/cmake/module_path.template
// Do not change this file manually
#ifndef __MODULE_PATH_H__
#define __MODULE_PATH_H__
namespace openspace {
constexpr std::string_view ModulePaths[] = {
// We need the empty string here or otherwise ModulePaths might be empty and thus
// cause a compiler error
"",
@MODULE_PATHS@
};
} // namespace openspace
#endif // __MODULE_PATH_H__