From: <bor...@us...> - 2023-03-23 12:10:42
|
Revision: 3804 http://sourceforge.net/p/ftm/code/3804 Author: borghesi Date: 2023-03-23 12:10:39 +0000 (Thu, 23 Mar 2023) Log Message: ----------- update of visual studio projects for windows compilation Modified Paths: -------------- trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj.filters trunk/ftm/build/max5/winxp-vs/ftm.sln trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj.user Modified: trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj =================================================================== --- trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj 2023-03-23 12:09:01 UTC (rev 3803) +++ trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj 2023-03-23 12:10:39 UTC (rev 3804) @@ -847,9 +847,11 @@ <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\CursorTool.cpp" /> <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\DrawTool.cpp" /> <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\EditTool.cpp" /> + <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\LassoTool.cpp" /> <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\LockTool.cpp" /> <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\RegionTool.cpp" /> <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\ScrollZoomTool.cpp" /> + <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\SelectTool.cpp" /> <ClCompile Include="..\..\..\..\components\juce\JuceLibraryCode\juce_core.cpp" /> <ClCompile Include="..\..\..\..\components\juce\JuceLibraryCode\juce_data_structures.cpp" /> <ClCompile Include="..\..\..\..\components\juce\JuceLibraryCode\juce_events.cpp" /> Modified: trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj.filters =================================================================== --- trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj.filters 2023-03-23 12:09:01 UTC (rev 3803) +++ trunk/ftm/build/max5/winxp-vs/ftm.editor.vcxproj.filters 2023-03-23 12:10:39 UTC (rev 3804) @@ -2752,5 +2752,11 @@ <ClCompile Include="..\..\..\..\components\ImtrEditor\src\editors\SummaryEditor.cpp"> <Filter>Source Files\editors</Filter> </ClCompile> + <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\LassoTool.cpp"> + <Filter>Source Files\tools</Filter> + </ClCompile> + <ClCompile Include="..\..\..\..\components\ImtrEditor\src\tools\SelectTool.cpp"> + <Filter>Source Files\tools</Filter> + </ClCompile> </ItemGroup> </Project> \ No newline at end of file Modified: trunk/ftm/build/max5/winxp-vs/ftm.sln =================================================================== --- trunk/ftm/build/max5/winxp-vs/ftm.sln 2023-03-23 12:09:01 UTC (rev 3803) +++ trunk/ftm/build/max5/winxp-vs/ftm.sln 2023-03-23 12:10:39 UTC (rev 3804) @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30523.141 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftmlib", "ftmlib.vcxproj", "{7C862DF9-D4A6-400C-A62A-7E72F42B89FA}" EndProject @@ -299,4 +299,7 @@ GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DD7A6A6C-881A-4CBF-8621-0478753D8E2C} + EndGlobalSection EndGlobal Modified: trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj =================================================================== --- trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj 2023-03-23 12:09:01 UTC (rev 3803) +++ trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj 2023-03-23 12:10:39 UTC (rev 3804) @@ -78,6 +78,7 @@ </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <TargetName>$(ProjectName)64</TargetName> + <OutDir>C:\Users\borgh\Documents\Max 8\Packages\FTM\support\</OutDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <TargetName>$(ProjectName)64</TargetName> @@ -142,9 +143,9 @@ <MinimalRebuild>true</MinimalRebuild> </ClCompile> <Link> - <AdditionalDependencies>sdifd.lib;libsndfile-1.lib;pthreadVC2.lib;MaxAPI.lib;MaxAudio.lib;%(AdditionalDependencies)</AdditionalDependencies> + <AdditionalDependencies>sdif.lib;libsndfile-1.lib;pthreadVC2.lib;MaxAPI.lib;MaxAudio.lib;%(AdditionalDependencies)</AdditionalDependencies> <AdditionalLibraryDirectories>..\..\..\..\components\sdif\win-x64;..\..\..\..\components\sndfile\win-x64;..\..\..\..\components\pthreads\win-x64;..\..\..\..\components\maxapi\max8.2\msp-includes\x64;..\..\..\..\components\maxapi\max8.2\max-includes\x64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> - <GenerateDebugInformation>true</GenerateDebugInformation> + <GenerateDebugInformation>DebugFull</GenerateDebugInformation> <ProgramDatabaseFile>$(OutDir)ftmlib.pdb</ProgramDatabaseFile> <SubSystem>Windows</SubSystem> <RandomizedBaseAddress>false</RandomizedBaseAddress> Modified: trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj.user =================================================================== --- trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj.user 2023-03-23 12:09:01 UTC (rev 3803) +++ trunk/ftm/build/max5/winxp-vs/ftmlib.vcxproj.user 2023-03-23 12:10:39 UTC (rev 3804) @@ -1,3 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <LocalDebuggerAttach>true</LocalDebuggerAttach> + <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> + </PropertyGroup> </Project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |