Skip to content

Commit

Permalink
Creation Of Kernel Project
Browse files Browse the repository at this point in the history
Core non-gui functionality added to new kernel project and exe projects adjusted accordingly. Includes some code changes to allow for this as well C/QString changes ready for translation.

TODO: Translations for Kernel, potential tidy up of some includes, and tidy up of project files include paths (some can now be removed I suspect).
  • Loading branch information
SimonCSmith committed Apr 11, 2023
1 parent 0e387d7 commit 5eb6460
Show file tree
Hide file tree
Showing 179 changed files with 6,159 additions and 7,198 deletions.
11 changes: 10 additions & 1 deletion DeepSkyStacker.VS2022.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeepSkyStackerCL", "DeepSky
{1747F255-9CB9-472B-8FEE-9E0BBFBAD49D} = {1747F255-9CB9-472B-8FEE-9E0BBFBAD49D}
{A2F500C6-6903-4C2D-906D-CE86B99BA50D} = {A2F500C6-6903-4C2D-906D-CE86B99BA50D}
{A71D2131-F425-381F-8A9A-29D60132A046} = {A71D2131-F425-381F-8A9A-29D60132A046}
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1} = {CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeepSkyStackerLive", "DeepSkyStackerLive\DeepSkyStackerLive.vcxproj", "{6290D6C2-900F-496C-A522-D5C8BF807066}"
ProjectSection(ProjectDependencies) = postProject
{D5FB2402-A821-4474-91E7-07F0DD5866F0} = {D5FB2402-A821-4474-91E7-07F0DD5866F0}
{A2F500C6-6903-4C2D-906D-CE86B99BA50D} = {A2F500C6-6903-4C2D-906D-CE86B99BA50D}
{A71D2131-F425-381F-8A9A-29D60132A046} = {A71D2131-F425-381F-8A9A-29D60132A046}
{D5FB2402-A821-4474-91E7-07F0DD5866F0} = {D5FB2402-A821-4474-91E7-07F0DD5866F0}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeepSkyStacker", "DeepSkyStacker\DeepSkyStacker.vcxproj", "{90721C24-BC43-450A-ADED-3417280D075B}"
ProjectSection(ProjectDependencies) = postProject
{A71D2131-F425-381F-8A9A-29D60132A046} = {A71D2131-F425-381F-8A9A-29D60132A046}
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1} = {CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjpg", "libjpg\libjpg.vcxproj", "{A2F500C6-6903-4C2D-906D-CE86B99BA50D}"
Expand All @@ -37,8 +39,11 @@ EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeepSkyStackerTest", "DeepSkyStackerTest\DeepSkyStackerTest.vcxproj", "{487E5070-BF81-4DEF-BE9F-510EEACE627B}"
ProjectSection(ProjectDependencies) = postProject
{1747F255-9CB9-472B-8FEE-9E0BBFBAD49D} = {1747F255-9CB9-472B-8FEE-9E0BBFBAD49D}
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1} = {CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeepSkyStackerKernel", "DeepSkyStackerKernel\DeepSkyStackerKernel.vcxproj", "{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Expand Down Expand Up @@ -77,6 +82,10 @@ Global
{487E5070-BF81-4DEF-BE9F-510EEACE627B}.Debug|x64.Build.0 = Debug|x64
{487E5070-BF81-4DEF-BE9F-510EEACE627B}.Release|x64.ActiveCfg = Release|x64
{487E5070-BF81-4DEF-BE9F-510EEACE627B}.Release|x64.Build.0 = Release|x64
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}.Debug|x64.ActiveCfg = Debug|x64
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}.Debug|x64.Build.0 = Debug|x64
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}.Release|x64.ActiveCfg = Release|x64
{CB7B75F1-08F4-4C8D-A7EF-2AA33E9A67F1}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion DeepSkyStacker/BackgroundOptions.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "stdafx.h"
#include "BackgroundOptions.h"
#include "ui/ui_BackgroundOptions.h"
#include "../DeepSkyStackerTest/AvxAccumulateTest.h"
#include "StackingTasks.h"
#include "Workspace.h"


Expand Down
2 changes: 1 addition & 1 deletion DeepSkyStacker/DSS-versionhelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Copyright (c) Microsoft Corp. All rights reserved. *
* *
******************************************************************/
#include <DSS-winapifamily.h>
#include "DSS-winapifamily.h"
#include <windows.h>

#ifdef _MSC_VER
Expand Down
193 changes: 14 additions & 179 deletions DeepSkyStacker/DeepSkyStacker.vcxproj

Large diffs are not rendered by default.

Loading

0 comments on commit 5eb6460

Please sign in to comment.