Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#17 optimized project stucture #19

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/app/WinPinMenu.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,11 @@
<PreprocessorDefinitions>WIN32;_WINDOWS;STRICT;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>../wtlx</AdditionalIncludeDirectories>
<WholeProgramOptimization>true</WholeProgramOptimization>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
<ResourceCompile>
<Culture>0x0409</Culture>
Expand Down Expand Up @@ -269,9 +271,11 @@
<PreprocessorDefinitions>_WINDOWS;STRICT;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>../wtlx</AdditionalIncludeDirectories>
<WholeProgramOptimization>true</WholeProgramOptimization>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
<ResourceCompile>
<Culture>0x0409</Culture>
Expand Down Expand Up @@ -300,9 +304,11 @@
<PreprocessorDefinitions>_WINDOWS;STRICT;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>../wtlx</AdditionalIncludeDirectories>
<WholeProgramOptimization>true</WholeProgramOptimization>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
<ResourceCompile>
<Culture>0x0409</Culture>
Expand Down
2 changes: 1 addition & 1 deletion src/app/buildnumber.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
48
49
6 changes: 3 additions & 3 deletions src/app/productmeta.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define PRODUCT_VERSION_MAJOR 0
#define PRODUCT_VERSION_MINOR 1
#define PRODUCT_VERSION_PATCH 1
#define PRODUCT_VERSION_TWEAK 48
#define PRODUCT_VERSION_TWEAK 49
#define PRODUCT_NAME _T("WinPinMenu\0")
#define PRODUCT_TITLE _T("Pinnable Taskbar Menu\0")
#define PRODUCT_DESCRIPTION _T("diVISION Pinnable Taskbar Menu For Windows\0")
Expand All @@ -20,5 +20,5 @@
#define FILE_NAME _T("WinPinMenu\0")
#define FILE_DESCRIPTION _T("diVISION Pinnable Taskbar Menu For Windows\0")

#define FILE_VERSION 0,1,1,48
#define FILE_VERSION_S _T("0.1.1.48\0")
#define FILE_VERSION 0,1,1,49
#define FILE_VERSION_S _T("0.1.1.49\0")
2 changes: 1 addition & 1 deletion src/app/res/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity processorArchitecture="*" type="win32" name="winpinmenu" version="0.1.1.44"/>
<assemblyIdentity processorArchitecture="*" type="win32" name="winpinmenu" version="0.1.1.48"/>
<description>diVISION Pinnable Taskbar Menu For Windows</description>
<dependency>
<dependentAssembly>
Expand Down
15 changes: 12 additions & 3 deletions src/wtlx/wtlx.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,18 @@
<ClInclude Include="framework.h" />
<ClInclude Include="pch.h" />
<ClInclude Include="targetver.h" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="wtlx/*.h" />
<ClInclude Include="wtlx\CoolContextMenu.h" />
<ClInclude Include="wtlx\dialogresizeex.h" />
<ClInclude Include="wtlx\Draw.h" />
<ClInclude Include="wtlx\FileVersionInfo.h" />
<ClInclude Include="wtlx\formattools.h" />
<ClInclude Include="wtlx\IatHook.h" />
<ClInclude Include="wtlx\NotifyTrayIcon.h" />
<ClInclude Include="wtlx\PictureCtrl.h" />
<ClInclude Include="wtlx\taskbarautomation.h" />
<ClInclude Include="wtlx\TaskBarList.h" />
<ClInclude Include="wtlx\UxModeHyperLink.h" />
<ClInclude Include="wtlx\uxthemehelper.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="Draw.cpp" />
Expand Down
5 changes: 0 additions & 5 deletions src/wtlx/wtlx.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClInclude Include="wtlx/*.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="pch.cpp">
<Filter>Source Files</Filter>
Expand Down