mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-01 09:10:18 -06:00
20 lines
448 B
Plaintext
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__
|