mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
delete Core/release/modules on clean. Most jars downloaded with Ivy, some moved into thirdparty.
This commit is contained in:
parent
b075904015
commit
fdfebc5f75
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,8 +3,7 @@
|
||||
/*/build/
|
||||
*/nbproject/private/*
|
||||
/nbproject/private/*
|
||||
/Core/release/modules/lib/
|
||||
/Core/release/modules/ext/
|
||||
/Core/release/modules/
|
||||
/Core/src/org/sleuthkit/autopsy/coreutils/Version.properties
|
||||
/Core/build/
|
||||
/Core/dist/
|
||||
@ -79,3 +78,4 @@ Core/src/org/sleuthkit/autopsy/casemodule/docs/screenshot.png
|
||||
Core/src/org/sleuthkit/autopsy/datamodel/ranges.csv
|
||||
|
||||
thunderbirdparser/release/modules/ext
|
||||
|
||||
|
@ -2,10 +2,60 @@
|
||||
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
|
||||
<!-- for some information on what you could do (e.g. targets to override). -->
|
||||
<!-- If you delete this file and reopen the project it will be recreated. -->
|
||||
<project name="org.sleuthkit.autopsy.core" default="netbeans" basedir=".">
|
||||
<project name="org.sleuthkit.autopsy.core" default="netbeans" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant" >
|
||||
<description>Builds, tests, and runs the project org.sleuthkit.autopsy.core</description>
|
||||
<import file="nbproject/build-impl.xml"/>
|
||||
|
||||
|
||||
|
||||
<property name="ivy.install.version" value="2.3.0-rc2" />
|
||||
<condition property="ivy.home" value="${env.IVY_HOME}">
|
||||
<isset property="env.IVY_HOME" />
|
||||
</condition>
|
||||
<property name="ivy.home" value="${user.home}/.ant" />
|
||||
<property name="ivy.jar.dir" value="${ivy.home}/lib" />
|
||||
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
|
||||
|
||||
<target name="download-ivy" unless="offline">
|
||||
<available file="${ivy.jar.file}" property="ivy.available"/>
|
||||
<antcall target="-download-ivy" />
|
||||
</target>
|
||||
|
||||
<target name="-download-ivy" unless="ivy.available">
|
||||
<mkdir dir="${ivy.jar.dir}"/>
|
||||
<get src="http://repo2.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
|
||||
dest="${ivy.jar.file}" usetimestamp="true"/>
|
||||
</target>
|
||||
|
||||
<!-- init-ivy will bootstrap Ivy if the user doesn't have it already -->
|
||||
<target name="init-ivy" depends="download-ivy" unless="ivy.lib.path">
|
||||
<path id="ivy.lib.path">
|
||||
<fileset dir="${ivy.jar.dir}" includes="*.jar"/>
|
||||
</path>
|
||||
<taskdef resource="org/apache/ivy/ant/antlib.xml"
|
||||
uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
|
||||
</target>
|
||||
|
||||
<property name="thirdparty.dir" value="${basedir}/../thirdparty" />
|
||||
<property name="modules.dir" value="release/modules/" />
|
||||
<property name="ext.dir" value="${modules.dir}/ext" />
|
||||
<target name="get-thirdparty-dependencies" description="get third-party dependencies">
|
||||
<mkdir dir="${ext.dir}"/>
|
||||
|
||||
<!--Copy openCV dependencies to release-->
|
||||
<copy todir="${modules.dir}" >
|
||||
<fileset dir="${thirdparty.dir}/opencv" />
|
||||
</copy>
|
||||
|
||||
<!--Copy other jars-->
|
||||
<copy file="${thirdparty.dir}/LICENSE-2.0.txt" todir="${ext.dir}" />
|
||||
<copy file="${thirdparty.dir}/rejistry/Rejistry-1.0-SNAPSHOT.jar" todir="${ext.dir}" />
|
||||
<copy file="${thirdparty.dir}/sevenzip/sevenzipjbinding.jar" todir="${ext.dir}" />
|
||||
<copy file="${thirdparty.dir}/sevenzip/sevenzipjbinding-AllPlatforms.jar" todir="${ext.dir}" />
|
||||
<copy file="${thirdparty.dir}/stix/StixLib.jar" todir="${ext.dir}" />
|
||||
<copy file="${thirdparty.dir}/jdom/jdom-2.0.5.jar" todir="${ext.dir}" />
|
||||
<copy file="${thirdparty.dir}/jdom/jdom-2.0.5-contrib.jar" todir="${ext.dir}" />
|
||||
</target>
|
||||
|
||||
<!-- Verify that the TSK_HOME env variable is set -->
|
||||
<target name="findTSK">
|
||||
<property environment="env"/>
|
||||
@ -18,25 +68,48 @@
|
||||
|
||||
<target name="getTSKJars" depends="findTSK">
|
||||
<property environment="env"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/dist/Tsk_DataModel_PostgreSQL.jar" tofile="${basedir}/release/modules/ext/Tsk_DataModel_PostgreSQL.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/sqlite-jdbc-3.8.11.jar" tofile="${basedir}/release/modules/ext/sqlite-jdbc-3.8.11.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/postgresql-9.4.1211.jre7.jar" tofile="${basedir}/release/modules/ext/postgresql-9.4.1211.jre7.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/mchange-commons-java-0.2.9.jar" tofile="${basedir}/release/modules/ext/mchange-commons-java-0.2.9.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/c3p0-0.9.5.jar" tofile="${basedir}/release/modules/ext/c3p0-0.9.5.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/sqlite-jdbc-3.8.11.jar" tofile="${basedir}/release/modules/ext/sqlite-jdbc-3.8.11.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/dist/Tsk_DataModel_PostgreSQL.jar"
|
||||
tofile="${basedir}/release/modules/ext/Tsk_DataModel_PostgreSQL.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/sqlite-jdbc-3.8.11.jar"
|
||||
tofile="${basedir}/release/modules/ext/sqlite-jdbc-3.8.11.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/postgresql-9.4.1211.jre7.jar"
|
||||
tofile="${basedir}/release/modules/ext/postgresql-9.4.1211.jre7.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/mchange-commons-java-0.2.9.jar"
|
||||
tofile="${basedir}/release/modules/ext/mchange-commons-java-0.2.9.jar"/>
|
||||
<copy file="${env.TSK_HOME}/bindings/java/lib/c3p0-0.9.5.jar"
|
||||
tofile="${basedir}/release/modules/ext/c3p0-0.9.5.jar"/>
|
||||
</target>
|
||||
|
||||
<target name="download-binlist">
|
||||
|
||||
|
||||
<target name="download-binlist" description="Download the din list data file used to enrich credit card numbers">
|
||||
<get src="https://raw.githubusercontent.com/binlist/data/master/ranges.csv"
|
||||
dest="src\org\sleuthkit\autopsy\datamodel"
|
||||
ignoreerrors="true"
|
||||
verbose="true"/>
|
||||
</target>
|
||||
|
||||
<target name="init" depends="basic-init,files-init,build-init,-javac-init">
|
||||
<antcall target="download-binlist" />
|
||||
|
||||
<target name="init" depends="basic-init,files-init,build-init,-javac-init,init-ivy">
|
||||
<!-- fetch all the dependencies from Ivy and stick them in the right places -->
|
||||
<ivy:resolve/>
|
||||
<ivy:retrieve conf="core" sync="true" pattern="release/modules/ext/[artifact]-[revision](-[classifier]).[ext]" />
|
||||
|
||||
<!-- get additional deps -->
|
||||
<antcall target="getTSKJars" />
|
||||
<antcall target="get-thirdparty-dependencies" />
|
||||
|
||||
<!--Donwload the bin list used for credit card number enrichment-->
|
||||
<antcall target="download-binlist" />
|
||||
</target>
|
||||
|
||||
<target name="clean" depends="projectized-common.clean">
|
||||
<!--Override clean to delete jars, etc downloaded with Ivy
|
||||
or copied in from thirdparty folder. This way we don't end up with
|
||||
out-of-date/unneeded stuff in the installer-->
|
||||
<delete includeemptydirs="true" >
|
||||
<fileset dir="release/modules" includes="**/*"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
|
||||
</project>
|
||||
|
25
Core/ivy.xml
Normal file
25
Core/ivy.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<ivy-module version="2.0">
|
||||
<info organisation="org.sleuthkit.autopsy" module="emailparser"/>
|
||||
<configurations >
|
||||
<!-- module dependencies -->
|
||||
<conf name="core"/>
|
||||
|
||||
</configurations>
|
||||
<dependencies >
|
||||
<dependency conf="core->default" org="org.apache.activemq" name="activemq-all" rev="5.11.1"/>
|
||||
|
||||
|
||||
<dependency conf="core->default" org="org.apache.curator" name="curator-client" rev="2.8.0"/>
|
||||
<dependency conf="core->default" org="org.apache.curator" name="curator-framework" rev="2.8.0"/>
|
||||
<dependency conf="core->default" org="org.apache.curator" name="curator-recipes" rev="2.8.0"/>
|
||||
|
||||
<dependency conf="core->default" org="org.python" name="jython-standalone" rev="2.7.0" />
|
||||
|
||||
<dependency conf="core->default" org="com.drewnoakes" name="metadata-extractor" rev="2.8.1"/>
|
||||
|
||||
<dependency conf="core->default" org="org.apache.tika" name="tika-core" rev="1.5"/>
|
||||
<dependency conf="core->default" org="com.adobe.xmp" name="xmpcore" rev="5.1.2"/>
|
||||
<dependency conf="core->default" org="org.apache.zookeeper" name="zookeeper" rev="3.4.6"/>
|
||||
|
||||
</dependencies>
|
||||
</ivy-module>
|
9
Core/ivysettings.xml
Normal file
9
Core/ivysettings.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<ivysettings>
|
||||
<settings defaultResolver="main"/>
|
||||
<resolvers>
|
||||
<chain name="main">
|
||||
<ibiblio name="central" m2compatible="true"/>
|
||||
<ibiblio name="maven.restlet.org" root="http://maven.restlet.com" m2compatible="true" />
|
||||
</chain>
|
||||
</resolvers>
|
||||
</ivysettings>
|
@ -1,18 +0,0 @@
|
||||
Copyright 2002-2012 Drew Noakes
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
More information about this project is available at:
|
||||
|
||||
http://drewnoakes.com/code/exif/
|
||||
http://code.google.com/p/metadata-extractor/
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-console-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-console-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-datetime-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-datetime-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-debug-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-debug-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-errorhandling-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-errorhandling-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-file-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-file-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-file-l1-2-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-file-l1-2-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-file-l2-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-file-l2-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-handle-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-handle-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-heap-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-heap-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-interlocked-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-interlocked-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-libraryloader-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-libraryloader-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-localization-l1-2-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-localization-l1-2-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-memory-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-memory-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-namedpipe-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-namedpipe-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-processenvironment-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-processenvironment-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-processthreads-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-processthreads-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-processthreads-l1-1-1.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-processthreads-l1-1-1.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-profile-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-profile-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-rtlsupport-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-rtlsupport-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-string-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-string-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-synch-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-synch-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-synch-l1-2-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-synch-l1-2-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-sysinfo-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-sysinfo-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-timezone-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-timezone-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-util-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-core-util-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-conio-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-conio-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-convert-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-convert-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-environment-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-environment-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-filesystem-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-filesystem-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-heap-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-heap-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-locale-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-locale-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-math-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-math-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-multibyte-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-multibyte-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-private-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-private-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-process-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-process-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-runtime-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-runtime-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-stdio-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-stdio-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-string-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-string-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-time-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-time-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-utility-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/api-ms-win-crt-utility-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/concrt140.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/concrt140.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libeay32.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libeay32.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libewf.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libewf.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libiconv-2.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libiconv-2.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libintl-8.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libintl-8.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libpq.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libpq.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libvhdi.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libvhdi.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/libvmdk.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/libvmdk.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/msvcp140.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/msvcp140.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/msvcr120.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/msvcr120.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/ssleay32.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/ssleay32.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/ucrtbase.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/ucrtbase.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/vccorlib140.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/vccorlib140.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/vcruntime140.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/vcruntime140.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/amd64/zlib.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/amd64/zlib.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-console-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-console-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-datetime-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-datetime-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-debug-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-debug-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-errorhandling-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-errorhandling-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-file-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-file-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-file-l1-2-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-file-l1-2-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-file-l2-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-file-l2-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-handle-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-handle-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-heap-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-heap-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-interlocked-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-interlocked-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-libraryloader-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-libraryloader-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-localization-l1-2-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-localization-l1-2-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-memory-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-memory-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-namedpipe-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-namedpipe-l1-1-0.dll
vendored
Normal file
Binary file not shown.
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-processenvironment-l1-1-0.dll
vendored
Normal file
BIN
thirdparty/opencv/lib/x86_64/api-ms-win-core-processenvironment-l1-1-0.dll
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user