mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-22 13:40:06 -05:00
1dfbd4eff2
-Add new preset dimensions to the right click menu of the width and height fields in the editor. -Change QSS stylesheets to properly handle tabs. -Make tabs rectangular by default. For some reason, they had always been triangular. --Bug fixes -Incremental rendering times in the editor were wrong. --Code changes -Migrate to Qt6. There is probably more work to be done here. -Migrate to VS2022. -Migrate to Wix 4 installer. -Change installer to install to program files for all users. -Fix many VS2022 code analysis warnings. -No longer use byte typedef, because std::byte is now a type. Revert all back to unsigned char. -Upgrade OpenCL headers to version 3.0 and keep locally now rather than trying to look for system files. -No longer link to Nvidia or AMD specific OpenCL libraries. Use the generic installer located at OCL_ROOT too. -Add the ability to change OpenCL grid dimensions. This was attempted for investigating possible performance improvments, but made no difference. This has not been verified on Linux or Mac yet.
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
* zlib.props - location of zlib source
|
|
*
|
|
* libpng version 1.5.12 - July 11, 2012
|
|
*
|
|
* Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
|
*
|
|
* This code is released under the libpng license.
|
|
* For conditions of distribution and use, see the disclaimer
|
|
* and license in png.h
|
|
|
|
* You must edit this file to record the location of the zlib
|
|
* source code.
|
|
-->
|
|
|
|
<Project ToolsVersion="4.0"
|
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Label="Globals">
|
|
<!-- Place the name of the directory containing the source of zlib used for
|
|
debugging in this property.
|
|
|
|
The directory need only contain the '.c' and '.h' files from the
|
|
source.
|
|
|
|
If you use a relative directory name (as below) then it must be
|
|
relative to the project directories; these are one level deepers than
|
|
the directories containing this file.
|
|
|
|
If the version of zlib you use does not match that used when the
|
|
distribution was built you will get warnings from pngtest that the zlib
|
|
versions do not match. The zlib version used in this build is recorded
|
|
below:
|
|
-->
|
|
<ZLibSrcDir>..\..\..\..\zlib</ZLibSrcDir>
|
|
</PropertyGroup>
|
|
</Project>
|