forked from eriksvedang/cakelisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunProcessEnums.hpp
30 lines (25 loc) · 1.02 KB
/
RunProcessEnums.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once
// Update ProcessCommandArgumentTypeToString() after modifying this enum
enum ProcessCommandArgumentType
{
ProcessCommandArgumentType_None = 0,
ProcessCommandArgumentType_String,
ProcessCommandArgumentType_SourceInput,
ProcessCommandArgumentType_ObjectOutput,
ProcessCommandArgumentType_ImportLibraryPaths,
ProcessCommandArgumentType_ImportLibraries,
ProcessCommandArgumentType_DebugSymbolsOutput,
ProcessCommandArgumentType_CakelispHeadersInclude,
ProcessCommandArgumentType_IncludeSearchDirs,
ProcessCommandArgumentType_AdditionalOptions,
ProcessCommandArgumentType_PrecompiledHeaderOutput,
ProcessCommandArgumentType_PrecompiledHeaderInclude,
ProcessCommandArgumentType_ObjectInput,
ProcessCommandArgumentType_DynamicLibraryOutput,
ProcessCommandArgumentType_LibrarySearchDirs,
ProcessCommandArgumentType_Libraries,
ProcessCommandArgumentType_LibraryRuntimeSearchDirs,
// Pass to the linker, e.g. on clang, add -Wl,
ProcessCommandArgumentType_LinkerArguments,
ProcessCommandArgumentType_ExecutableOutput
};