Codebase list kodi-pvr-vuplus / 6c24a1f6-997b-4f61-a3bb-ebe82d8c3e88/main
New upstream snapshot. Debian Janitor 2 years ago
8 changed file(s) with 83 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 # build artifacts
1 build/
2 pvr.*/addon.xml
3
4 # Debian build files
5 debian/changelog
6 debian/files
7 debian/*.log
8 debian/*.substvars
9 debian/.debhelper/
10 debian/tmp/
11 debian/kodi-pvr-*/
12 obj-x86_64-linux-gnu/
13
14 # commonly used editors
15 # vim
16 *.swp
17
18 # Eclipse
19 *.project
20 *.cproject
21 .classpath
22 *.sublime-*
23 .settings/
24
25 # KDevelop 4
26 *.kdev4
27
28 # gedit
29 *~
30
31 # CLion
32 /.idea
33
34 # clion
35 .idea/
36
37 # to prevent add after a "git format-patch VALUE" and "git add ." call
38 /*.patch
39
40 # Visual Studio Code
41 .vscode
42
43 # to prevent add if project code opened by Visual Studio over CMake file
44 .vs/
45
46 # General MacOS
47 .DS_Store
48 .AppleDouble
49 .LSOverride
0 kodi-pvr-vuplus (7.4.3+ds1+git20210411.1.a7efd16-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Wed, 09 Jun 2021 15:32:31 -0000
5
06 kodi-pvr-vuplus (7.4.3+ds1-1) unstable; urgency=medium
17
28 * New upstream version 7.4.3+ds1
0 -DBUILD_TESTING:BOOL=OFF
0 80c45b090e40bf3d7a7f2a6e9f36206d3ff710acfa8d8cc1f8c763bb3075e22e
0 nlohmann-json https://github.com/nlohmann/json/archive/v3.6.1.tar.gz
0 cmake_minimum_required(VERSION 3.5)
1 project(tinyxml)
2
3 set(SOURCES src/tinystr.cpp
4 src/tinyxml.cpp
5 src/tinyxmlerror.cpp
6 src/tinyxmlparser.cpp)
7
8 if(WIN32)
9 add_definitions(-DWIN32 -D_LIB)
10 endif()
11 add_definitions(-DTIXML_USE_STL)
12
13 add_library(tinyxml ${SOURCES})
14
15 include_directories(${PROJECT_SOURCE_DIR}/include)
16
17 set(HEADERS ${PROJECT_SOURCE_DIR}/include/tinystr.h
18 ${PROJECT_SOURCE_DIR}/include/tinyxml.h)
19
20 install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
21 install(TARGETS tinyxml DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)
0 8164c9ad48b9028667768a584d62f7760cfbfb90d0dd6214ad174403058da10c
0 tinyxml http://mirrors.kodi.tv/build-deps/sources/tinyxml-2.6.2_2.tar.gz