Browse code

Various updates:

* Fix build with Visual Studio, updating projects to Visual Studio 2019 (as that is what I have installed).
* Changed C++ language standard to C++ 17.
* Add files for in_2sf's spu from Coda's recent commit.
* Add files for zlib now that it is being included as a submodule (removes the need for the zlib DLL as well).
* Remove common.props (due to the aforementioned zlib inclusion as well as the winamp headers also being in the project now).
* Minor NCSF file in the SSEQ player, the check for when to process tracks should've been >=, not >.

Naram Qashat authored on 2021/03/15 22:34:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,18 +0,0 @@
1
-<?xml version="1.0" encoding="utf-8"?>
2
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
-  <ImportGroup Label="PropertySheets" />
4
-  <PropertyGroup Label="UserMacros">
5
-    <zlibRootDir>$(MSBuildThisFileDirectory)\zlib</zlibRootDir>
6
-    <WinampSDKDir>$(MSBuildThisFileDirectory)\winamp</WinampSDKDir>
7
-  </PropertyGroup>
8
-  <PropertyGroup />
9
-  <ItemDefinitionGroup />
10
-  <ItemGroup>
11
-    <BuildMacro Include="zlibRootDir">
12
-      <Value>$(zlibRootDir)</Value>
13
-    </BuildMacro>
14
-    <BuildMacro Include="WinampSDKDir">
15
-      <Value>$(WinampSDKDir)</Value>
16
-    </BuildMacro>
17
-  </ItemGroup>
18
-</Project>
Browse code

switch to git submodule for zlib

Adam Higerd authored on 2021/02/11 18:32:11
Showing 1 changed files
... ...
@@ -2,8 +2,8 @@
2 2
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
   <ImportGroup Label="PropertySheets" />
4 4
   <PropertyGroup Label="UserMacros">
5
-    <zlibRootDir>ZLIBFIXME</zlibRootDir>
6
-    <WinampSDKDir>WINAMPSDKFIXME</WinampSDKDir>
5
+    <zlibRootDir>$(MSBuildThisFileDirectory)\zlib</zlibRootDir>
6
+    <WinampSDKDir>$(MSBuildThisFileDirectory)\winamp</WinampSDKDir>
7 7
   </PropertyGroup>
8 8
   <PropertyGroup />
9 9
   <ItemDefinitionGroup />
Browse code

This should've never got committed as it was, oops.

Naram Qashat authored on 2014/09/25 12:39:52
Showing 1 changed files
... ...
@@ -2,8 +2,8 @@
2 2
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
   <ImportGroup Label="PropertySheets" />
4 4
   <PropertyGroup Label="UserMacros">
5
-    <zlibRootDir>G:\Code\zlib128-dll</zlibRootDir>
6
-    <WinampSDKDir>G:\Code\Winamp SDK</WinampSDKDir>
5
+    <zlibRootDir>ZLIBFIXME</zlibRootDir>
6
+    <WinampSDKDir>WINAMPSDKFIXME</WinampSDKDir>
7 7
   </PropertyGroup>
8 8
   <PropertyGroup />
9 9
   <ItemDefinitionGroup />
Browse code

* Fixes for gcc and clang (while they can compile the code, the DLLs made aren't functional, but oh well).

* [2SF] Used more up-to-date asmjit, despite the ugly looking code.

Naram Qashat authored on 2014/09/17 19:51:45
Showing 1 changed files
... ...
@@ -1,9 +1,9 @@
1
-<?xml version="1.0" encoding="utf-8"?>
1
+<?xml version="1.0" encoding="utf-8"?>
2 2
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
   <ImportGroup Label="PropertySheets" />
4 4
   <PropertyGroup Label="UserMacros">
5
-    <zlibRootDir>ZLIBFIXME</zlibRootDir>
6
-    <WinampSDKDir>WINAMPSDKFIXME</WinampSDKDir>
5
+    <zlibRootDir>G:\Code\zlib128-dll</zlibRootDir>
6
+    <WinampSDKDir>G:\Code\Winamp SDK</WinampSDKDir>
7 7
   </PropertyGroup>
8 8
   <PropertyGroup />
9 9
   <ItemDefinitionGroup />
... ...
@@ -15,4 +15,4 @@
15 15
       <Value>$(WinampSDKDir)</Value>
16 16
     </BuildMacro>
17 17
   </ItemGroup>
18
-</Project>
19 18
\ No newline at end of file
19
+</Project>
Browse code

Initial creation of new git repository, this is currently lacking the source files, will be added in the next commit.

Naram Qashat authored on 2013/05/08 14:48:14
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,18 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+  <ImportGroup Label="PropertySheets" />
4
+  <PropertyGroup Label="UserMacros">
5
+    <zlibRootDir>ZLIBFIXME</zlibRootDir>
6
+    <WinampSDKDir>WINAMPSDKFIXME</WinampSDKDir>
7
+  </PropertyGroup>
8
+  <PropertyGroup />
9
+  <ItemDefinitionGroup />
10
+  <ItemGroup>
11
+    <BuildMacro Include="zlibRootDir">
12
+      <Value>$(zlibRootDir)</Value>
13
+    </BuildMacro>
14
+    <BuildMacro Include="WinampSDKDir">
15
+      <Value>$(WinampSDKDir)</Value>
16
+    </BuildMacro>
17
+  </ItemGroup>
18
+</Project>
0 19
\ No newline at end of file