This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCMakeLists.txt
96 lines (89 loc) · 2.64 KB
/
CMakeLists.txt
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
cmake_minimum_required(VERSION 3.17)
project(InfernoOmnia VERSION 1.2.0 LANGUAGES CSharp)
include(CSharpUtilities)
add_executable(InfernoOmnia
App.config
App.xaml
App.xaml.cs
MainWindow.xaml
MainWindow.xaml.cs
ProgramLauncher.cs
Controller/AchievementPanel.xaml
Controller/AchievementPanel.xaml.cs
Controller/DownloadPanel.xaml.cs
Controller/DownloadPanel.xaml
Controller/Game.cs
Controller/InfernoChecker.cs
Controller/InputDialogWindow.xaml
Controller/InputDialogWindow.xaml.cs
Controller/Mod.cs
Controller/ModManifest.cs
Controller/ModPanel.xaml.cs
Controller/ModPanel.xaml
Controller/OneAnswerInputDialogWindow.xaml
Controller/OneAnswerInputDialogWindow.xaml.cs
Controller/ProfilePanel.xaml
Controller/ProfilePanel.xaml.cs
Controller/Rand.cs
Controller/SupportedGames.cs
Controller/WebDownloader.cs
InfernoMods/FileAssociation.cs
MelonMods/MelonHandler.cs
Utils/Extensions.cs
Utils/ProcessHelpers.cs
Utils/RGBASource.cs
Utils/Settings.cs
Utils/Storage.cs
Properties/AssemblyInfo.cs
Properties/Resources.Designer.cs
Properties/Resources.resx
Properties/Settings.Designer.cs
Properties/Settings.cs
Properties/Settings.settings)
csharp_set_designer_cs_properties(
Properties/AssemblyInfo.cs
Properties/Resources.Designer.cs
Properties/Resources.resx
Properties/Settings.Designer.cs
Properties/Settings.cs
Properties/Settings.settings)
csharp_set_xaml_cs_properties(
App.xaml
App.xaml.cs
MainWindow.xaml
MainWindow.xaml.cs
Controller/AchievementPanel.xaml
Controller/AchievementPanel.xaml.cs
Controller/DownloadPanel.xaml.cs
Controller/DownloadPanel.xaml
Controller/InputDialogWindow.xaml
Controller/InputDialogWindow.xaml.cs
Controller/ModPanel.xaml.cs
Controller/ModPanel.xaml
Controller/OneAnswerInputDialogWindow.xaml
Controller/OneAnswerInputDialogWindow.xaml.cs
Controller/ProfilePanel.xaml
Controller/ProfilePanel.xaml.cs)
set_property(TARGET InfernoOmnia PROPERTY VS_DOTNET_TARGET_FRAMEWORK_VERSION "v4.8")
set_property(TARGET InfernoOmnia PROPERTY WIN32_EXECUTABLE TRUE)
set_property(TARGET InfernoOmnia PROPERTY VS_DOTNET_REFERENCES
"Microsoft.CSharp"
"PresentationCore"
"PresentationFramework"
"System"
"System.Core"
"System.Data"
"System.Data.DataSetExtensions"
"System.Net.Http"
"System.Xaml"
"System.Xml"
"System.Xml.Linq"
"WindowsBase"
"DiscordRPC"
"DotNetZip"
"Facepunch.Steamworks.Win64"
"FluentWPF"
"MelonLoader.ModHandler"
"ModernWpf.Controls"
"ModernWpf"
"Newtonsoft.Json")