| 77 | |
| 78 | |
| 79 | FuzzApp::FuzzApp() |
| 80 | { |
| 81 | Targets_Create(); |
| 82 | |
| 83 | mTargetType = BfTargetType_BeefConsoleApplication; |
| 84 | |
| 85 | mSystem = NULL; |
| 86 | mCompiler = NULL; |
| 87 | mProject = NULL; |
| 88 | mCELibProject = NULL; |
| 89 | mIsCERun = false; |
| 90 | mStartupObject = "Program"; |
| 91 | |
| 92 | #ifdef BF_PLATFORM_WINDOWS |
| 93 | mOptLevel = BfOptLevel_OgPlus; |
| 94 | mToolset = BfToolsetType_Microsoft; |
| 95 | #else |
| 96 | mOptLevel = BfOptLevel_O0; |
| 97 | mToolset = BfToolsetType_GNU; |
| 98 | #endif |
| 99 | |
| 100 | #ifdef BF_PLATFORM_WINDOWS |
| 101 | mTargetTriple = "x86_64-pc-windows-msvc"; |
| 102 | #elif defined BF_PLATFORM_MACOS |
| 103 | mTargetTriple = "x86_64-apple-macosx10.8.0"; |
| 104 | #else |
| 105 | mTargetTriple = "x86_64-unknown-linux-gnu"; |
| 106 | #endif |
| 107 | } |
| 108 | |
| 109 | FuzzApp::~FuzzApp() |
| 110 | { |
nothing calls this directly
no test coverage detected