Files
OpenSpace/support/cmake/module_path.template
Alexander Bock c275b2f833 Feature/cmake cleanup (#381)
* Rename OnScreenGui module to ImGui
* Support multiple external module folders (closes #31)
* Cleaning up CMake files
  * Restructure application specification
  * Add parameter for library mode to all modules
  * Add functions to handle global variable state
* Misc/remove warnings (#383)
* Increase build timeout and do a clean rebuild every commit
2017-08-14 09:38:32 -04:00

20 lines
443 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 const char* 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__