1. // src\Constants.h - constant values
  2. #pragma once // Copyright 2023 Alex0vSky (https://github.com/Alex0vSky)
  3. namespace prj_3d { namespace UePrjCreator {
  4. struct Constants {
  5.  
  6. static auto getVersion() {
  7. static const auto value = (
  8. "UePrjCreator version " A0S_STRING_VERSION "\n"
  9. );
  10. return value;
  11. }
  12.  
  13. static auto getCopyright() {
  14. static const auto value = ( A0S_Copyright "\n\n" );
  15. return value;
  16. }
  17.  
  18. static auto getUsage() {
  19. static const auto value = (
  20. "Create *.uproject file for Unreal Engine from command line\n\n"
  21. );
  22. return value;
  23. }
  24.  
  25. static auto getUnrealEngineCommandLine() {
  26. static const auto value = (
  27. L" -FullStdOutLogOutput -nothreading -noshaderworker -NoEnginePlugins"
  28. );
  29. return value;
  30. }
  31.  
  32. // In root HKEY_LOCAL_MACHINE
  33. static auto getUnrealEngineRegistryKey() {
  34. static const auto value = (
  35. LR"(SOFTWARE\EpicGames\Unreal Engine)"
  36. );
  37. return value;
  38. }
  39.  
  40. static auto getUnrealEngineRegistryValueName() {
  41. static const auto value = (
  42. LR"(InstalledDirectory)"
  43. );
  44. return value;
  45. }
  46.  
  47. };
  48. }} // namespace prj_3d::UePrjCreator

Generated by OpenCppCoverage (Version: 0.9.9.0)