Skip to content

Commit 1b3f723

Browse files
authored
Merge pull request #17 from AlwinEsch/Matrix-change
[Matrix] cleanups / API change
2 parents 44e6f15 + 231bb56 commit 1b3f723

File tree

9 files changed

+116
-192
lines changed

9 files changed

+116
-192
lines changed

.gitignore

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# build artifacts
22
build/
3-
obj-x86_64-linux-gnu/
4-
lib/vis_milkdrop/*.inc
53
visualization.*/addon.xml
64

5+
# Debian build files
6+
debian/changelog
7+
debian/files
8+
debian/*.log
9+
debian/*.substvars
10+
debian/.debhelper/
11+
debian/tmp/
12+
debian/kodi-visualization-*/
13+
obj-x86_64-linux-gnu/
14+
715
# commonly used editors
816
# vim
917
*.swp
@@ -27,5 +35,8 @@ visualization.*/addon.xml
2735
# clion
2836
.idea/
2937

30-
# KDev
31-
*.kdev4
38+
# to prevent add after a "git format-patch VALUE" and "git add ." call
39+
/*.patch
40+
41+
# to prevent add if project code opened by Visual Studio over CMake file
42+
.vs/

FindDirectX.cmake

Lines changed: 0 additions & 39 deletions
This file was deleted.

depends/windowsstore/nasmw/0001-Set-EXTERNAL_DEPENDENCIES-to-0-needed-to-prevent-Per.patch

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,7 @@
11
cmake_minimum_required(VERSION 3.5)
22
project(nasmw)
33

4-
include(ExternalProject)
5-
6-
# Prevent this on UWP ARM build
7-
if(NOT CMAKE_GENERATOR MATCHES ARM)
8-
externalproject_add(nasmw
9-
SOURCE_DIR ${PROJECT_SOURCE_DIR}
10-
BINARY_DIR ${PROJECT_SOURCE_DIR}
11-
INSTALL_DIR ${PROJECT_SOURCE_DIR}
12-
CONFIGURE_COMMAND ""
13-
BUILD_COMMAND nmake /f Mkfiles/msvc.mak
14-
INSTALL_COMMAND "")
15-
else()
16-
externalproject_add(nasmw
17-
SOURCE_DIR ${PROJECT_SOURCE_DIR}
18-
BINARY_DIR ${PROJECT_SOURCE_DIR}
19-
INSTALL_DIR ${PROJECT_SOURCE_DIR}
20-
CONFIGURE_COMMAND ""
21-
BUILD_COMMAND cmake -E echo "NASM not used on UWP ARM"
22-
INSTALL_COMMAND "")
23-
endif()
24-
25-
install(PROGRAMS nasm.exe DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
26-
RENAME nasmw.exe
27-
OPTIONAL)
4+
install(
5+
DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/
6+
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
7+
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b34bae344a3f2ed93b2ca7bf25f1ed3fb12da89eeda6096e3551fd66adeae9fc
1+
250f9b5eeb2111e8c7b494a977490985b8604fe7518a6f5041cde37cc727a067
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nasmw http://mirrors.kodi.tv/build-deps/sources/nasm-2.14.02.tar.gz
1+
nasmw http://mirrors.kodi.tv/build-deps/sources/nasm-2.14.02-win32.zip

lib/vis_milkdrop/plugin.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -811,8 +811,6 @@ void CPlugin::MyPreInitialize()
811811

812812
//----------------------------------------------------------------------
813813

814-
extern void LoadSettings();
815-
816814
void CPlugin::MyReadConfig()
817815
{
818816
/*
@@ -918,8 +916,6 @@ void CPlugin::MyReadConfig()
918916

919917
//-------------------------------------------------------------------------
920918
// XML version
921-
922-
LoadSettings();
923919
}
924920

925921
//----------------------------------------------------------------------

0 commit comments

Comments
 (0)