Skip to content
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
48 changes: 26 additions & 22 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.18)
project(visualization.fishbmc)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR})
Expand All @@ -23,27 +23,31 @@ include_directories(${includes}
${GLM_INCLUDE_DIR}
${KODI_INCLUDE_DIR}/..) # Hack way with "/..", need bigger Kodi cmake rework to match right include ways (becomes done in future)

set(FISH_SOURCES src/analyst.cpp
src/audiobuffer.cpp
src/blurengine.cpp
src/cpudetect.cpp
src/fische.cpp
src/fishbmc_addon.cpp
src/screenbuffer.cpp
src/vector.cpp
src/vectorfield.cpp
src/wavepainter.cpp)

set(FISH_HEADERS src/analyst.h
src/audiobuffer.h
src/blurengine.h
src/fische.h
src/fishbmc_addon.h
src/fische_internal.h
src/screenbuffer.h
src/vectorfield.h
src/vector.h
src/wavepainter.h)
set(FISH_SOURCES src/fishbmc_addon.cpp
src/md5.cpp
src/fische/analyst.cpp
src/fische/audiobuffer.cpp
src/fische/blurengine.cpp
src/fische/cpudetect.c
src/fische/fische_c.cpp
src/fische/fische.cpp
src/fische/screenbuffer.cpp
src/fische/vector.cpp
src/fische/vectorfield.cpp
src/fische/wavepainter.cpp)

set(FISH_HEADERS src/fishbmc_addon.h
src/md5.h
src/fische/analyst.hpp
src/fische/audiobuffer.hpp
src/fische/blurengine.hpp
src/fische/cpudetect.h
src/fische/fische.h
src/fische/fische.hpp
src/fische/screenbuffer.hpp
src/fische/vector.hpp
src/fische/vectorfield.hpp
src/fische/wavepainter.hpp)

build_addon(visualization.fishbmc FISH DEPLIBS)

Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Format: http://dep.debian.net/deps/dep5
Upstream-Name: visualization.fishbmc

Files: *
Copyright: 2005-2022 Team Kodi
Copyright: 2005-2026 Team Kodi
License: GPL-2+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
263 changes: 0 additions & 263 deletions depends/windows/angle/0001-fix-uwp.patch

This file was deleted.

Loading