mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-03 18:19:38 -06:00
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
// This file has been auto-generated by CMake based on
|
|
// support/cmake/module_registration.template
|
|
// Do not change this file manually
|
|
|
|
#ifndef __MODULE_REGISTRATION_H__
|
|
#define __MODULE_REGISTRATION_H__
|
|
|
|
@MODULE_HEADERS@
|
|
namespace openspace {
|
|
|
|
auto AllModules = []() -> std::vector<OpenSpaceModule*> {
|
|
return {
|
|
@MODULE_CLASSES@ };
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#endif // __MODULE_REGISTRATION_H__
|