Initialisierung
This commit is contained in:
1
AirplayServer.git/HEAD
Normal file
1
AirplayServer.git/HEAD
Normal file
@@ -0,0 +1 @@
|
||||
ref: refs/heads/master
|
||||
6
AirplayServer.git/config
Normal file
6
AirplayServer.git/config
Normal file
@@ -0,0 +1,6 @@
|
||||
[core]
|
||||
repositoryformatversion = 0
|
||||
filemode = true
|
||||
bare = true
|
||||
[remote "origin"]
|
||||
url = /home/julian/UxPlay/.git
|
||||
1
AirplayServer.git/description
Normal file
1
AirplayServer.git/description
Normal file
@@ -0,0 +1 @@
|
||||
Unnamed repository; edit this file 'description' to name the repository.
|
||||
15
AirplayServer.git/hooks/applypatch-msg.sample
Executable file
15
AirplayServer.git/hooks/applypatch-msg.sample
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to check the commit log message taken by
|
||||
# applypatch from an e-mail message.
|
||||
#
|
||||
# The hook should exit with non-zero status after issuing an
|
||||
# appropriate message if it wants to stop the commit. The hook is
|
||||
# allowed to edit the commit message file.
|
||||
#
|
||||
# To enable this hook, rename this file to "applypatch-msg".
|
||||
|
||||
. git-sh-setup
|
||||
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
|
||||
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
|
||||
:
|
||||
24
AirplayServer.git/hooks/commit-msg.sample
Executable file
24
AirplayServer.git/hooks/commit-msg.sample
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to check the commit log message.
|
||||
# Called by "git commit" with one argument, the name of the file
|
||||
# that has the commit message. The hook should exit with non-zero
|
||||
# status after issuing an appropriate message if it wants to stop the
|
||||
# commit. The hook is allowed to edit the commit message file.
|
||||
#
|
||||
# To enable this hook, rename this file to "commit-msg".
|
||||
|
||||
# Uncomment the below to add a Signed-off-by line to the message.
|
||||
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
|
||||
# hook is more suited to it.
|
||||
#
|
||||
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
|
||||
|
||||
# This example catches duplicate Signed-off-by lines.
|
||||
|
||||
test "" = "$(grep '^Signed-off-by: ' "$1" |
|
||||
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
|
||||
echo >&2 Duplicate Signed-off-by lines.
|
||||
exit 1
|
||||
}
|
||||
114
AirplayServer.git/hooks/fsmonitor-watchman.sample
Executable file
114
AirplayServer.git/hooks/fsmonitor-watchman.sample
Executable file
@@ -0,0 +1,114 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use IPC::Open2;
|
||||
|
||||
# An example hook script to integrate Watchman
|
||||
# (https://facebook.github.io/watchman/) with git to speed up detecting
|
||||
# new and modified files.
|
||||
#
|
||||
# The hook is passed a version (currently 1) and a time in nanoseconds
|
||||
# formatted as a string and outputs to stdout all files that have been
|
||||
# modified since the given time. Paths must be relative to the root of
|
||||
# the working tree and separated by a single NUL.
|
||||
#
|
||||
# To enable this hook, rename this file to "query-watchman" and set
|
||||
# 'git config core.fsmonitor .git/hooks/query-watchman'
|
||||
#
|
||||
my ($version, $time) = @ARGV;
|
||||
|
||||
# Check the hook interface version
|
||||
|
||||
if ($version == 1) {
|
||||
# convert nanoseconds to seconds
|
||||
$time = int $time / 1000000000;
|
||||
} else {
|
||||
die "Unsupported query-fsmonitor hook version '$version'.\n" .
|
||||
"Falling back to scanning...\n";
|
||||
}
|
||||
|
||||
my $git_work_tree;
|
||||
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
|
||||
$git_work_tree = Win32::GetCwd();
|
||||
$git_work_tree =~ tr/\\/\//;
|
||||
} else {
|
||||
require Cwd;
|
||||
$git_work_tree = Cwd::cwd();
|
||||
}
|
||||
|
||||
my $retry = 1;
|
||||
|
||||
launch_watchman();
|
||||
|
||||
sub launch_watchman {
|
||||
|
||||
my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty')
|
||||
or die "open2() failed: $!\n" .
|
||||
"Falling back to scanning...\n";
|
||||
|
||||
# In the query expression below we're asking for names of files that
|
||||
# changed since $time but were not transient (ie created after
|
||||
# $time but no longer exist).
|
||||
#
|
||||
# To accomplish this, we're using the "since" generator to use the
|
||||
# recency index to select candidate nodes and "fields" to limit the
|
||||
# output to file names only. Then we're using the "expression" term to
|
||||
# further constrain the results.
|
||||
#
|
||||
# The category of transient files that we want to ignore will have a
|
||||
# creation clock (cclock) newer than $time_t value and will also not
|
||||
# currently exist.
|
||||
|
||||
my $query = <<" END";
|
||||
["query", "$git_work_tree", {
|
||||
"since": $time,
|
||||
"fields": ["name"],
|
||||
"expression": ["not", ["allof", ["since", $time, "cclock"], ["not", "exists"]]]
|
||||
}]
|
||||
END
|
||||
|
||||
print CHLD_IN $query;
|
||||
close CHLD_IN;
|
||||
my $response = do {local $/; <CHLD_OUT>};
|
||||
|
||||
die "Watchman: command returned no output.\n" .
|
||||
"Falling back to scanning...\n" if $response eq "";
|
||||
die "Watchman: command returned invalid output: $response\n" .
|
||||
"Falling back to scanning...\n" unless $response =~ /^\{/;
|
||||
|
||||
my $json_pkg;
|
||||
eval {
|
||||
require JSON::XS;
|
||||
$json_pkg = "JSON::XS";
|
||||
1;
|
||||
} or do {
|
||||
require JSON::PP;
|
||||
$json_pkg = "JSON::PP";
|
||||
};
|
||||
|
||||
my $o = $json_pkg->new->utf8->decode($response);
|
||||
|
||||
if ($retry > 0 and $o->{error} and $o->{error} =~ m/unable to resolve root .* directory (.*) is not watched/) {
|
||||
print STDERR "Adding '$git_work_tree' to watchman's watch list.\n";
|
||||
$retry--;
|
||||
qx/watchman watch "$git_work_tree"/;
|
||||
die "Failed to make watchman watch '$git_work_tree'.\n" .
|
||||
"Falling back to scanning...\n" if $? != 0;
|
||||
|
||||
# Watchman will always return all files on the first query so
|
||||
# return the fast "everything is dirty" flag to git and do the
|
||||
# Watchman query just to get it over with now so we won't pay
|
||||
# the cost in git to look up each individual file.
|
||||
print "/\0";
|
||||
eval { launch_watchman() };
|
||||
exit 0;
|
||||
}
|
||||
|
||||
die "Watchman: $o->{error}.\n" .
|
||||
"Falling back to scanning...\n" if $o->{error};
|
||||
|
||||
binmode STDOUT, ":utf8";
|
||||
local $, = "\0";
|
||||
print @{$o->{files}};
|
||||
}
|
||||
8
AirplayServer.git/hooks/post-update.sample
Executable file
8
AirplayServer.git/hooks/post-update.sample
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to prepare a packed repository for use over
|
||||
# dumb transports.
|
||||
#
|
||||
# To enable this hook, rename this file to "post-update".
|
||||
|
||||
exec git update-server-info
|
||||
14
AirplayServer.git/hooks/pre-applypatch.sample
Executable file
14
AirplayServer.git/hooks/pre-applypatch.sample
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed
|
||||
# by applypatch from an e-mail message.
|
||||
#
|
||||
# The hook should exit with non-zero status after issuing an
|
||||
# appropriate message if it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-applypatch".
|
||||
|
||||
. git-sh-setup
|
||||
precommit="$(git rev-parse --git-path hooks/pre-commit)"
|
||||
test -x "$precommit" && exec "$precommit" ${1+"$@"}
|
||||
:
|
||||
49
AirplayServer.git/hooks/pre-commit.sample
Executable file
49
AirplayServer.git/hooks/pre-commit.sample
Executable file
@@ -0,0 +1,49 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed.
|
||||
# Called by "git commit" with no arguments. The hook should
|
||||
# exit with non-zero status after issuing an appropriate message if
|
||||
# it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-commit".
|
||||
|
||||
if git rev-parse --verify HEAD >/dev/null 2>&1
|
||||
then
|
||||
against=HEAD
|
||||
else
|
||||
# Initial commit: diff against an empty tree object
|
||||
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
|
||||
fi
|
||||
|
||||
# If you want to allow non-ASCII filenames set this variable to true.
|
||||
allownonascii=$(git config --bool hooks.allownonascii)
|
||||
|
||||
# Redirect output to stderr.
|
||||
exec 1>&2
|
||||
|
||||
# Cross platform projects tend to avoid non-ASCII filenames; prevent
|
||||
# them from being added to the repository. We exploit the fact that the
|
||||
# printable range starts at the space character and ends with tilde.
|
||||
if [ "$allownonascii" != "true" ] &&
|
||||
# Note that the use of brackets around a tr range is ok here, (it's
|
||||
# even required, for portability to Solaris 10's /usr/bin/tr), since
|
||||
# the square bracket bytes happen to fall in the designated range.
|
||||
test $(git diff --cached --name-only --diff-filter=A -z $against |
|
||||
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
|
||||
then
|
||||
cat <<\EOF
|
||||
Error: Attempt to add a non-ASCII file name.
|
||||
|
||||
This can cause problems if you want to work with people on other platforms.
|
||||
|
||||
To be portable it is advisable to rename the file.
|
||||
|
||||
If you know what you are doing you can disable this check using:
|
||||
|
||||
git config hooks.allownonascii true
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# If there are whitespace errors, print the offending file names and fail.
|
||||
exec git diff-index --check --cached $against --
|
||||
53
AirplayServer.git/hooks/pre-push.sample
Executable file
53
AirplayServer.git/hooks/pre-push.sample
Executable file
@@ -0,0 +1,53 @@
|
||||
#!/bin/sh
|
||||
|
||||
# An example hook script to verify what is about to be pushed. Called by "git
|
||||
# push" after it has checked the remote status, but before anything has been
|
||||
# pushed. If this script exits with a non-zero status nothing will be pushed.
|
||||
#
|
||||
# This hook is called with the following parameters:
|
||||
#
|
||||
# $1 -- Name of the remote to which the push is being done
|
||||
# $2 -- URL to which the push is being done
|
||||
#
|
||||
# If pushing without using a named remote those arguments will be equal.
|
||||
#
|
||||
# Information about the commits which are being pushed is supplied as lines to
|
||||
# the standard input in the form:
|
||||
#
|
||||
# <local ref> <local sha1> <remote ref> <remote sha1>
|
||||
#
|
||||
# This sample shows how to prevent push of commits where the log message starts
|
||||
# with "WIP" (work in progress).
|
||||
|
||||
remote="$1"
|
||||
url="$2"
|
||||
|
||||
z40=0000000000000000000000000000000000000000
|
||||
|
||||
while read local_ref local_sha remote_ref remote_sha
|
||||
do
|
||||
if [ "$local_sha" = $z40 ]
|
||||
then
|
||||
# Handle delete
|
||||
:
|
||||
else
|
||||
if [ "$remote_sha" = $z40 ]
|
||||
then
|
||||
# New branch, examine all commits
|
||||
range="$local_sha"
|
||||
else
|
||||
# Update to existing branch, examine new commits
|
||||
range="$remote_sha..$local_sha"
|
||||
fi
|
||||
|
||||
# Check for WIP commit
|
||||
commit=`git rev-list -n 1 --grep '^WIP' "$range"`
|
||||
if [ -n "$commit" ]
|
||||
then
|
||||
echo >&2 "Found WIP commit in $local_ref, not pushing"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
169
AirplayServer.git/hooks/pre-rebase.sample
Executable file
169
AirplayServer.git/hooks/pre-rebase.sample
Executable file
@@ -0,0 +1,169 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2006, 2008 Junio C Hamano
|
||||
#
|
||||
# The "pre-rebase" hook is run just before "git rebase" starts doing
|
||||
# its job, and can prevent the command from running by exiting with
|
||||
# non-zero status.
|
||||
#
|
||||
# The hook is called with the following parameters:
|
||||
#
|
||||
# $1 -- the upstream the series was forked from.
|
||||
# $2 -- the branch being rebased (or empty when rebasing the current branch).
|
||||
#
|
||||
# This sample shows how to prevent topic branches that are already
|
||||
# merged to 'next' branch from getting rebased, because allowing it
|
||||
# would result in rebasing already published history.
|
||||
|
||||
publish=next
|
||||
basebranch="$1"
|
||||
if test "$#" = 2
|
||||
then
|
||||
topic="refs/heads/$2"
|
||||
else
|
||||
topic=`git symbolic-ref HEAD` ||
|
||||
exit 0 ;# we do not interrupt rebasing detached HEAD
|
||||
fi
|
||||
|
||||
case "$topic" in
|
||||
refs/heads/??/*)
|
||||
;;
|
||||
*)
|
||||
exit 0 ;# we do not interrupt others.
|
||||
;;
|
||||
esac
|
||||
|
||||
# Now we are dealing with a topic branch being rebased
|
||||
# on top of master. Is it OK to rebase it?
|
||||
|
||||
# Does the topic really exist?
|
||||
git show-ref -q "$topic" || {
|
||||
echo >&2 "No such branch $topic"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Is topic fully merged to master?
|
||||
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
|
||||
if test -z "$not_in_master"
|
||||
then
|
||||
echo >&2 "$topic is fully merged to master; better remove it."
|
||||
exit 1 ;# we could allow it, but there is no point.
|
||||
fi
|
||||
|
||||
# Is topic ever merged to next? If so you should not be rebasing it.
|
||||
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
|
||||
only_next_2=`git rev-list ^master ${publish} | sort`
|
||||
if test "$only_next_1" = "$only_next_2"
|
||||
then
|
||||
not_in_topic=`git rev-list "^$topic" master`
|
||||
if test -z "$not_in_topic"
|
||||
then
|
||||
echo >&2 "$topic is already up to date with master"
|
||||
exit 1 ;# we could allow it, but there is no point.
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
else
|
||||
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
|
||||
/usr/bin/perl -e '
|
||||
my $topic = $ARGV[0];
|
||||
my $msg = "* $topic has commits already merged to public branch:\n";
|
||||
my (%not_in_next) = map {
|
||||
/^([0-9a-f]+) /;
|
||||
($1 => 1);
|
||||
} split(/\n/, $ARGV[1]);
|
||||
for my $elem (map {
|
||||
/^([0-9a-f]+) (.*)$/;
|
||||
[$1 => $2];
|
||||
} split(/\n/, $ARGV[2])) {
|
||||
if (!exists $not_in_next{$elem->[0]}) {
|
||||
if ($msg) {
|
||||
print STDERR $msg;
|
||||
undef $msg;
|
||||
}
|
||||
print STDERR " $elem->[1]\n";
|
||||
}
|
||||
}
|
||||
' "$topic" "$not_in_next" "$not_in_master"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
<<\DOC_END
|
||||
|
||||
This sample hook safeguards topic branches that have been
|
||||
published from being rewound.
|
||||
|
||||
The workflow assumed here is:
|
||||
|
||||
* Once a topic branch forks from "master", "master" is never
|
||||
merged into it again (either directly or indirectly).
|
||||
|
||||
* Once a topic branch is fully cooked and merged into "master",
|
||||
it is deleted. If you need to build on top of it to correct
|
||||
earlier mistakes, a new topic branch is created by forking at
|
||||
the tip of the "master". This is not strictly necessary, but
|
||||
it makes it easier to keep your history simple.
|
||||
|
||||
* Whenever you need to test or publish your changes to topic
|
||||
branches, merge them into "next" branch.
|
||||
|
||||
The script, being an example, hardcodes the publish branch name
|
||||
to be "next", but it is trivial to make it configurable via
|
||||
$GIT_DIR/config mechanism.
|
||||
|
||||
With this workflow, you would want to know:
|
||||
|
||||
(1) ... if a topic branch has ever been merged to "next". Young
|
||||
topic branches can have stupid mistakes you would rather
|
||||
clean up before publishing, and things that have not been
|
||||
merged into other branches can be easily rebased without
|
||||
affecting other people. But once it is published, you would
|
||||
not want to rewind it.
|
||||
|
||||
(2) ... if a topic branch has been fully merged to "master".
|
||||
Then you can delete it. More importantly, you should not
|
||||
build on top of it -- other people may already want to
|
||||
change things related to the topic as patches against your
|
||||
"master", so if you need further changes, it is better to
|
||||
fork the topic (perhaps with the same name) afresh from the
|
||||
tip of "master".
|
||||
|
||||
Let's look at this example:
|
||||
|
||||
o---o---o---o---o---o---o---o---o---o "next"
|
||||
/ / / /
|
||||
/ a---a---b A / /
|
||||
/ / / /
|
||||
/ / c---c---c---c B /
|
||||
/ / / \ /
|
||||
/ / / b---b C \ /
|
||||
/ / / / \ /
|
||||
---o---o---o---o---o---o---o---o---o---o---o "master"
|
||||
|
||||
|
||||
A, B and C are topic branches.
|
||||
|
||||
* A has one fix since it was merged up to "next".
|
||||
|
||||
* B has finished. It has been fully merged up to "master" and "next",
|
||||
and is ready to be deleted.
|
||||
|
||||
* C has not merged to "next" at all.
|
||||
|
||||
We would want to allow C to be rebased, refuse A, and encourage
|
||||
B to be deleted.
|
||||
|
||||
To compute (1):
|
||||
|
||||
git rev-list ^master ^topic next
|
||||
git rev-list ^master next
|
||||
|
||||
if these match, topic has not merged in next at all.
|
||||
|
||||
To compute (2):
|
||||
|
||||
git rev-list master..topic
|
||||
|
||||
if this is empty, it is fully merged to "master".
|
||||
|
||||
DOC_END
|
||||
24
AirplayServer.git/hooks/pre-receive.sample
Executable file
24
AirplayServer.git/hooks/pre-receive.sample
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to make use of push options.
|
||||
# The example simply echoes all push options that start with 'echoback='
|
||||
# and rejects all pushes when the "reject" push option is used.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-receive".
|
||||
|
||||
if test -n "$GIT_PUSH_OPTION_COUNT"
|
||||
then
|
||||
i=0
|
||||
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
|
||||
do
|
||||
eval "value=\$GIT_PUSH_OPTION_$i"
|
||||
case "$value" in
|
||||
echoback=*)
|
||||
echo "echo from the pre-receive-hook: ${value#*=}" >&2
|
||||
;;
|
||||
reject)
|
||||
exit 1
|
||||
esac
|
||||
i=$((i + 1))
|
||||
done
|
||||
fi
|
||||
42
AirplayServer.git/hooks/prepare-commit-msg.sample
Executable file
42
AirplayServer.git/hooks/prepare-commit-msg.sample
Executable file
@@ -0,0 +1,42 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to prepare the commit log message.
|
||||
# Called by "git commit" with the name of the file that has the
|
||||
# commit message, followed by the description of the commit
|
||||
# message's source. The hook's purpose is to edit the commit
|
||||
# message file. If the hook fails with a non-zero status,
|
||||
# the commit is aborted.
|
||||
#
|
||||
# To enable this hook, rename this file to "prepare-commit-msg".
|
||||
|
||||
# This hook includes three examples. The first one removes the
|
||||
# "# Please enter the commit message..." help message.
|
||||
#
|
||||
# The second includes the output of "git diff --name-status -r"
|
||||
# into the message, just before the "git status" output. It is
|
||||
# commented because it doesn't cope with --amend or with squashed
|
||||
# commits.
|
||||
#
|
||||
# The third example adds a Signed-off-by line to the message, that can
|
||||
# still be edited. This is rarely a good idea.
|
||||
|
||||
COMMIT_MSG_FILE=$1
|
||||
COMMIT_SOURCE=$2
|
||||
SHA1=$3
|
||||
|
||||
/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE"
|
||||
|
||||
# case "$COMMIT_SOURCE,$SHA1" in
|
||||
# ,|template,)
|
||||
# /usr/bin/perl -i.bak -pe '
|
||||
# print "\n" . `git diff --cached --name-status -r`
|
||||
# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;;
|
||||
# *) ;;
|
||||
# esac
|
||||
|
||||
# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||
# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE"
|
||||
# if test -z "$COMMIT_SOURCE"
|
||||
# then
|
||||
# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE"
|
||||
# fi
|
||||
128
AirplayServer.git/hooks/update.sample
Executable file
128
AirplayServer.git/hooks/update.sample
Executable file
@@ -0,0 +1,128 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to block unannotated tags from entering.
|
||||
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
|
||||
#
|
||||
# To enable this hook, rename this file to "update".
|
||||
#
|
||||
# Config
|
||||
# ------
|
||||
# hooks.allowunannotated
|
||||
# This boolean sets whether unannotated tags will be allowed into the
|
||||
# repository. By default they won't be.
|
||||
# hooks.allowdeletetag
|
||||
# This boolean sets whether deleting tags will be allowed in the
|
||||
# repository. By default they won't be.
|
||||
# hooks.allowmodifytag
|
||||
# This boolean sets whether a tag may be modified after creation. By default
|
||||
# it won't be.
|
||||
# hooks.allowdeletebranch
|
||||
# This boolean sets whether deleting branches will be allowed in the
|
||||
# repository. By default they won't be.
|
||||
# hooks.denycreatebranch
|
||||
# This boolean sets whether remotely creating branches will be denied
|
||||
# in the repository. By default this is allowed.
|
||||
#
|
||||
|
||||
# --- Command line
|
||||
refname="$1"
|
||||
oldrev="$2"
|
||||
newrev="$3"
|
||||
|
||||
# --- Safety check
|
||||
if [ -z "$GIT_DIR" ]; then
|
||||
echo "Don't run this script from the command line." >&2
|
||||
echo " (if you want, you could supply GIT_DIR then run" >&2
|
||||
echo " $0 <ref> <oldrev> <newrev>)" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
|
||||
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# --- Config
|
||||
allowunannotated=$(git config --bool hooks.allowunannotated)
|
||||
allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
|
||||
denycreatebranch=$(git config --bool hooks.denycreatebranch)
|
||||
allowdeletetag=$(git config --bool hooks.allowdeletetag)
|
||||
allowmodifytag=$(git config --bool hooks.allowmodifytag)
|
||||
|
||||
# check for no description
|
||||
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
|
||||
case "$projectdesc" in
|
||||
"Unnamed repository"* | "")
|
||||
echo "*** Project description file hasn't been set" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# --- Check types
|
||||
# if $newrev is 0000...0000, it's a commit to delete a ref.
|
||||
zero="0000000000000000000000000000000000000000"
|
||||
if [ "$newrev" = "$zero" ]; then
|
||||
newrev_type=delete
|
||||
else
|
||||
newrev_type=$(git cat-file -t $newrev)
|
||||
fi
|
||||
|
||||
case "$refname","$newrev_type" in
|
||||
refs/tags/*,commit)
|
||||
# un-annotated tag
|
||||
short_refname=${refname##refs/tags/}
|
||||
if [ "$allowunannotated" != "true" ]; then
|
||||
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
|
||||
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/tags/*,delete)
|
||||
# delete tag
|
||||
if [ "$allowdeletetag" != "true" ]; then
|
||||
echo "*** Deleting a tag is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/tags/*,tag)
|
||||
# annotated tag
|
||||
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
|
||||
then
|
||||
echo "*** Tag '$refname' already exists." >&2
|
||||
echo "*** Modifying a tag is not allowed in this repository." >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/heads/*,commit)
|
||||
# branch
|
||||
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
|
||||
echo "*** Creating a branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/heads/*,delete)
|
||||
# delete branch
|
||||
if [ "$allowdeletebranch" != "true" ]; then
|
||||
echo "*** Deleting a branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/remotes/*,commit)
|
||||
# tracking branch
|
||||
;;
|
||||
refs/remotes/*,delete)
|
||||
# delete tracking branch
|
||||
if [ "$allowdeletebranch" != "true" ]; then
|
||||
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
# Anything else (is there anything else?)
|
||||
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# --- Finished
|
||||
exit 0
|
||||
6
AirplayServer.git/info/exclude
Normal file
6
AirplayServer.git/info/exclude
Normal file
@@ -0,0 +1,6 @@
|
||||
# git ls-files --others --exclude-from=.git/info/exclude
|
||||
# Lines that start with '#' are comments.
|
||||
# For a project mostly in C, the following would be a good set of
|
||||
# exclude patterns (uncomment them if you want to use them):
|
||||
# *.[oa]
|
||||
# *~
|
||||
Binary file not shown.
Binary file not shown.
2
AirplayServer.git/packed-refs
Normal file
2
AirplayServer.git/packed-refs
Normal file
@@ -0,0 +1,2 @@
|
||||
# pack-refs with: peeled fully-peeled sorted
|
||||
a35a331876114c0158083529e2496cb5253883d4 refs/heads/master
|
||||
0
CMakeLists.txt
Normal file → Executable file
0
CMakeLists.txt
Normal file → Executable file
BIN
build/AirplayServer
Executable file
BIN
build/AirplayServer
Executable file
Binary file not shown.
531
build/CMakeCache.txt
Normal file
531
build/CMakeCache.txt
Normal file
@@ -0,0 +1,531 @@
|
||||
# This is the CMakeCache file.
|
||||
# For build in directory: /home/julian/UxPlay/build
|
||||
# It was generated by CMake: /usr/bin/cmake
|
||||
# You can edit this file to change values found and used by cmake.
|
||||
# If you do not want to change any of the values, simply exit the editor.
|
||||
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||
# The syntax for the file is as follows:
|
||||
# KEY:TYPE=VALUE
|
||||
# KEY is the name of a variable in the cache.
|
||||
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||
# VALUE is the current value for the KEY.
|
||||
|
||||
########################
|
||||
# EXTERNAL cache entries
|
||||
########################
|
||||
|
||||
//Value Computed by CMake
|
||||
AirplayServer_BINARY_DIR:STATIC=/home/julian/UxPlay/build
|
||||
|
||||
//Value Computed by CMake
|
||||
AirplayServer_SOURCE_DIR:STATIC=/home/julian/UxPlay
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||
|
||||
//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
|
||||
// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
|
||||
CMAKE_BUILD_TYPE:STRING=
|
||||
|
||||
//Enable/Disable color output during build.
|
||||
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||
|
||||
//CXX compiler
|
||||
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
||||
|
||||
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7
|
||||
|
||||
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7
|
||||
|
||||
//Flags used by the compiler during all build types.
|
||||
CMAKE_CXX_FLAGS:STRING=
|
||||
|
||||
//Flags used by the compiler during debug builds.
|
||||
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||
|
||||
//Flags used by the compiler during release builds for minimum
|
||||
// size.
|
||||
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||
|
||||
//Flags used by the compiler during release builds.
|
||||
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||
|
||||
//Flags used by the compiler during release builds with debug info.
|
||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||
|
||||
//C compiler
|
||||
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||
|
||||
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7
|
||||
|
||||
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7
|
||||
|
||||
//Flags used by the compiler during all build types.
|
||||
CMAKE_C_FLAGS:STRING=
|
||||
|
||||
//Flags used by the compiler during debug builds.
|
||||
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||
|
||||
//Flags used by the compiler during release builds for minimum
|
||||
// size.
|
||||
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||
|
||||
//Flags used by the compiler during release builds.
|
||||
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||
|
||||
//Flags used by the compiler during release builds with debug info.
|
||||
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||
|
||||
//Flags used by the linker.
|
||||
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during debug builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during release minsize builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during release builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during Release with Debug Info builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Enable/Disable output of compile commands during generation.
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
|
||||
|
||||
//Install path prefix, prepended onto install directories.
|
||||
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
|
||||
|
||||
//Flags used by the linker during the creation of modules.
|
||||
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during debug builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during release minsize builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during release builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during Release with Debug Info builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_NAME:STATIC=AirplayServer
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||
|
||||
//Flags used by the linker during the creation of dll's.
|
||||
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during debug builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during release minsize builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during release builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during Release with Debug Info builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//If set, runtime paths are not added when installing shared libraries,
|
||||
// but are added when building.
|
||||
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||
|
||||
//If set, runtime paths are not added when using shared libraries.
|
||||
CMAKE_SKIP_RPATH:BOOL=NO
|
||||
|
||||
//Flags used by the linker during the creation of static libraries.
|
||||
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during debug builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during release minsize builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during release builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during Release with Debug Info builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||
|
||||
//If this value is on, makefiles will be generated without the
|
||||
// .SILENT directive, and all commands will be echoed to the console
|
||||
// during the make. This is useful for debugging only. With Visual
|
||||
// Studio IDE projects all commands are done without /nologo.
|
||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||
|
||||
//Path to a library.
|
||||
OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
|
||||
//Path to a file.
|
||||
OPENSSL_INCLUDE_DIR:PATH=/usr/include
|
||||
|
||||
//Path to a library.
|
||||
OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so
|
||||
|
||||
//pkg-config executable
|
||||
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
|
||||
|
||||
//Dependencies for the target
|
||||
airplay_LIB_DEPENDS:STATIC=general;pthread;general;curve25519;general;ed25519;general;playfair;general;plist;general;OpenSSL::Crypto;general;dns_sd;
|
||||
|
||||
//Dependencies for target
|
||||
curve25519_LIB_DEPENDS:STATIC=
|
||||
|
||||
//Dependencies for target
|
||||
ed25519_LIB_DEPENDS:STATIC=
|
||||
|
||||
//Dependencies for target
|
||||
playfair_LIB_DEPENDS:STATIC=
|
||||
|
||||
//Dependencies for target
|
||||
plist_LIB_DEPENDS:STATIC=
|
||||
|
||||
//Dependencies for the target
|
||||
renderers_LIB_DEPENDS:STATIC=general;-lglib-2.0;general;gstsdp-1.0;general;gstvideo-1.0;general;gstapp-1.0;general;gstbase-1.0;general;gstreamer-1.0;general;gobject-2.0;general;glib-2.0;general;gtk-3;general;gdk-3;general;pangocairo-1.0;general;pango-1.0;general;atk-1.0;general;cairo-gobject;general;cairo;general;gdk_pixbuf-2.0;general;gio-2.0;general;gobject-2.0;general;glib-2.0;general;airplay;
|
||||
|
||||
|
||||
########################
|
||||
# INTERNAL cache entries
|
||||
########################
|
||||
|
||||
//ADVANCED property for variable: CMAKE_AR
|
||||
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||
//This is the directory where this CMakeCache.txt was created
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/home/julian/UxPlay/build
|
||||
//Major version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||
//Minor version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MINOR_VERSION:INTERNAL=10
|
||||
//Patch version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
||||
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||
//Path to CMake executable.
|
||||
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||
//Path to cpack program executable.
|
||||
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||
//Path to ctest program executable.
|
||||
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//Path to cache edit program executable.
|
||||
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
|
||||
//Executable file format
|
||||
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||
//Name of external makefile project generator.
|
||||
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||
//Name of generator.
|
||||
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||
//Name of generator platform.
|
||||
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||
//Name of generator toolset.
|
||||
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||
//Source directory with the top level CMakeLists.txt file for this
|
||||
// project
|
||||
CMAKE_HOME_DIRECTORY:INTERNAL=/home/julian/UxPlay
|
||||
//Install .so files without execute permission.
|
||||
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_LINKER
|
||||
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_NM
|
||||
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||
//number of local generators
|
||||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=7
|
||||
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||
//Platform information initialized
|
||||
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_RANLIB
|
||||
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||
//Path to CMake installation.
|
||||
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STRIP
|
||||
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||
//uname command
|
||||
CMAKE_UNAME:INTERNAL=/bin/uname
|
||||
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||
//Details about finding OpenSSL
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcrypto.so][/usr/include][v1.1.1()]
|
||||
//Details about finding PkgConfig
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v0.29.1()]
|
||||
GLIB_CFLAGS:INTERNAL=-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GLIB_CFLAGS_I:INTERNAL=
|
||||
GLIB_CFLAGS_OTHER:INTERNAL=
|
||||
GLIB_FOUND:INTERNAL=1
|
||||
GLIB_INCLUDEDIR:INTERNAL=/usr/include
|
||||
GLIB_INCLUDE_DIRS:INTERNAL=/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GLIB_LDFLAGS:INTERNAL=-lglib-2.0
|
||||
GLIB_LDFLAGS_OTHER:INTERNAL=
|
||||
GLIB_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
GLIB_LIBRARIES:INTERNAL=glib-2.0
|
||||
GLIB_LIBRARY_DIRS:INTERNAL=
|
||||
GLIB_LIBS:INTERNAL=
|
||||
GLIB_LIBS_L:INTERNAL=
|
||||
GLIB_LIBS_OTHER:INTERNAL=
|
||||
GLIB_LIBS_PATHS:INTERNAL=
|
||||
GLIB_PREFIX:INTERNAL=/usr
|
||||
GLIB_STATIC_CFLAGS:INTERNAL=-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GLIB_STATIC_CFLAGS_I:INTERNAL=
|
||||
GLIB_STATIC_CFLAGS_OTHER:INTERNAL=
|
||||
GLIB_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GLIB_STATIC_LDFLAGS:INTERNAL=-lglib-2.0;-pthread;-lpcre;-pthread
|
||||
GLIB_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
|
||||
GLIB_STATIC_LIBDIR:INTERNAL=
|
||||
GLIB_STATIC_LIBRARIES:INTERNAL=glib-2.0;pcre
|
||||
GLIB_STATIC_LIBRARY_DIRS:INTERNAL=
|
||||
GLIB_STATIC_LIBS:INTERNAL=
|
||||
GLIB_STATIC_LIBS_L:INTERNAL=
|
||||
GLIB_STATIC_LIBS_OTHER:INTERNAL=
|
||||
GLIB_STATIC_LIBS_PATHS:INTERNAL=
|
||||
GLIB_VERSION:INTERNAL=2.56.4
|
||||
GLIB_glib-2.0_INCLUDEDIR:INTERNAL=
|
||||
GLIB_glib-2.0_LIBDIR:INTERNAL=
|
||||
GLIB_glib-2.0_PREFIX:INTERNAL=
|
||||
GLIB_glib-2.0_VERSION:INTERNAL=
|
||||
GST_CFLAGS:INTERNAL=-pthread;-I/usr/include/gstreamer-1.0;-I/usr/include/orc-0.4;-I/usr/include/gstreamer-1.0;-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GST_CFLAGS_I:INTERNAL=
|
||||
GST_CFLAGS_OTHER:INTERNAL=-pthread
|
||||
GST_FOUND:INTERNAL=1
|
||||
GST_INCLUDEDIR:INTERNAL=
|
||||
GST_INCLUDE_DIRS:INTERNAL=/usr/include/gstreamer-1.0;/usr/include/orc-0.4;/usr/include/gstreamer-1.0;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GST_LDFLAGS:INTERNAL=-lgstsdp-1.0;-lgstvideo-1.0;-lgstapp-1.0;-lgstbase-1.0;-lgstreamer-1.0;-lgobject-2.0;-lglib-2.0
|
||||
GST_LDFLAGS_OTHER:INTERNAL=
|
||||
GST_LIBDIR:INTERNAL=
|
||||
GST_LIBRARIES:INTERNAL=gstsdp-1.0;gstvideo-1.0;gstapp-1.0;gstbase-1.0;gstreamer-1.0;gobject-2.0;glib-2.0
|
||||
GST_LIBRARY_DIRS:INTERNAL=
|
||||
GST_LIBS:INTERNAL=
|
||||
GST_LIBS_L:INTERNAL=
|
||||
GST_LIBS_OTHER:INTERNAL=
|
||||
GST_LIBS_PATHS:INTERNAL=
|
||||
GST_PREFIX:INTERNAL=
|
||||
GST_STATIC_CFLAGS:INTERNAL=-pthread;-I/usr/include/gstreamer-1.0;-I/usr/include/orc-0.4;-I/usr/include/gstreamer-1.0;-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GST_STATIC_CFLAGS_I:INTERNAL=
|
||||
GST_STATIC_CFLAGS_OTHER:INTERNAL=-pthread
|
||||
GST_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/gstreamer-1.0;/usr/include/orc-0.4;/usr/include/gstreamer-1.0;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GST_STATIC_LDFLAGS:INTERNAL=-lgstsdp-1.0;-lgio-2.0;-lz;-lresolv;-lselinux;-lmount;-lgstvideo-1.0;-lorc-0.4;-lm;-lpthread;-lgstapp-1.0;-lgstbase-1.0;-lgstreamer-1.0;-lgmodule-2.0;-pthread;-ldl;-lgobject-2.0;-lffi;-lglib-2.0;-pthread;-lpcre;-pthread
|
||||
GST_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
|
||||
GST_STATIC_LIBDIR:INTERNAL=
|
||||
GST_STATIC_LIBRARIES:INTERNAL=gstsdp-1.0;gio-2.0;z;resolv;selinux;mount;gstvideo-1.0;orc-0.4;m;pthread;gstapp-1.0;gstbase-1.0;gstreamer-1.0;gmodule-2.0;dl;gobject-2.0;ffi;glib-2.0;pcre
|
||||
GST_STATIC_LIBRARY_DIRS:INTERNAL=
|
||||
GST_STATIC_LIBS:INTERNAL=
|
||||
GST_STATIC_LIBS_L:INTERNAL=
|
||||
GST_STATIC_LIBS_OTHER:INTERNAL=
|
||||
GST_STATIC_LIBS_PATHS:INTERNAL=
|
||||
GST_VERSION:INTERNAL=
|
||||
GST_gstreamer-1.0_INCLUDEDIR:INTERNAL=/usr/include/gstreamer-1.0
|
||||
GST_gstreamer-1.0_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
GST_gstreamer-1.0_PREFIX:INTERNAL=/usr
|
||||
GST_gstreamer-1.0_VERSION:INTERNAL=1.14.5
|
||||
GST_gstreamer-app-1.0_INCLUDEDIR:INTERNAL=/usr/include/gstreamer-1.0
|
||||
GST_gstreamer-app-1.0_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
GST_gstreamer-app-1.0_PREFIX:INTERNAL=/usr
|
||||
GST_gstreamer-app-1.0_VERSION:INTERNAL=1.14.5
|
||||
GST_gstreamer-sdp-1.0_INCLUDEDIR:INTERNAL=/usr/include/gstreamer-1.0
|
||||
GST_gstreamer-sdp-1.0_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
GST_gstreamer-sdp-1.0_PREFIX:INTERNAL=/usr
|
||||
GST_gstreamer-sdp-1.0_VERSION:INTERNAL=1.14.5
|
||||
GST_gstreamer-video-1.0_INCLUDEDIR:INTERNAL=/usr/include/gstreamer-1.0
|
||||
GST_gstreamer-video-1.0_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
GST_gstreamer-video-1.0_PREFIX:INTERNAL=/usr
|
||||
GST_gstreamer-video-1.0_VERSION:INTERNAL=1.14.5
|
||||
GTK_CFLAGS:INTERNAL=-pthread;-I/usr/include/gtk-3.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/at-spi-2.0;-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include;-I/usr/include/gtk-3.0;-I/usr/include/gio-unix-2.0/;-I/usr/include/cairo;-I/usr/include/pango-1.0;-I/usr/include/harfbuzz;-I/usr/include/pango-1.0;-I/usr/include/atk-1.0;-I/usr/include/cairo;-I/usr/include/pixman-1;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/libpng16;-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GTK_CFLAGS_I:INTERNAL=
|
||||
GTK_CFLAGS_OTHER:INTERNAL=-pthread
|
||||
GTK_FOUND:INTERNAL=1
|
||||
GTK_INCLUDEDIR:INTERNAL=/usr/include
|
||||
GTK_INCLUDE_DIRS:INTERNAL=/usr/include/gtk-3.0;/usr/include/at-spi2-atk/2.0;/usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include;/usr/include/gtk-3.0;/usr/include/gio-unix-2.0/;/usr/include/cairo;/usr/include/pango-1.0;/usr/include/harfbuzz;/usr/include/pango-1.0;/usr/include/atk-1.0;/usr/include/cairo;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/freetype2;/usr/include/libpng16;/usr/include/gdk-pixbuf-2.0;/usr/include/libpng16;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GTK_LDFLAGS:INTERNAL=-lgtk-3;-lgdk-3;-lpangocairo-1.0;-lpango-1.0;-latk-1.0;-lcairo-gobject;-lcairo;-lgdk_pixbuf-2.0;-lgio-2.0;-lgobject-2.0;-lglib-2.0
|
||||
GTK_LDFLAGS_OTHER:INTERNAL=
|
||||
GTK_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
GTK_LIBRARIES:INTERNAL=gtk-3;gdk-3;pangocairo-1.0;pango-1.0;atk-1.0;cairo-gobject;cairo;gdk_pixbuf-2.0;gio-2.0;gobject-2.0;glib-2.0
|
||||
GTK_LIBRARY_DIRS:INTERNAL=
|
||||
GTK_LIBS:INTERNAL=
|
||||
GTK_LIBS_L:INTERNAL=
|
||||
GTK_LIBS_OTHER:INTERNAL=
|
||||
GTK_LIBS_PATHS:INTERNAL=
|
||||
GTK_PREFIX:INTERNAL=/usr
|
||||
GTK_STATIC_CFLAGS:INTERNAL=-pthread;-I/usr/include/gtk-3.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/at-spi-2.0;-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include;-I/usr/include/gtk-3.0;-I/usr/include/gio-unix-2.0/;-I/usr/include/cairo;-I/usr/include/pango-1.0;-I/usr/include/harfbuzz;-I/usr/include/pango-1.0;-I/usr/include/atk-1.0;-I/usr/include/cairo;-I/usr/include/pixman-1;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/libpng16;-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GTK_STATIC_CFLAGS_I:INTERNAL=
|
||||
GTK_STATIC_CFLAGS_OTHER:INTERNAL=-pthread
|
||||
GTK_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/gtk-3.0;/usr/include/at-spi2-atk/2.0;/usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include;/usr/include/gtk-3.0;/usr/include/gio-unix-2.0/;/usr/include/cairo;/usr/include/pango-1.0;/usr/include/harfbuzz;/usr/include/pango-1.0;/usr/include/atk-1.0;/usr/include/cairo;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/freetype2;/usr/include/libpng16;/usr/include/gdk-pixbuf-2.0;/usr/include/libpng16;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include
|
||||
GTK_STATIC_LDFLAGS:INTERNAL=-lgtk-3;-latk-bridge-2.0;-latspi;-ldbus-1;-lpthread;-lsystemd;-lgdk-3;-lgio-2.0;-lXinerama;-lXi;-lXrandr;-lXcursor;-lXcomposite;-lXdamage;-lXfixes;-lxkbcommon;-lwayland-cursor;-lwayland-egl;-lwayland-client;-lepoxy;-ldl;-lpangocairo-1.0;-lpangoft2-1.0;-lharfbuzz;-lm;-lgraphite2;-lpango-1.0;-lm;-latk-1.0;-lcairo-gobject;-lcairo;-lz;-lpixman-1;-lfontconfig;-lexpat;-lfreetype;-lexpat;-lfreetype;-lpng16;-lm;-lz;-lm;-lxcb-shm;-lxcb-render;-lXrender;-lXext;-lX11;-lpthread;-lxcb;-lXau;-lXdmcp;-lgdk_pixbuf-2.0;-lm;-lpng16;-lm;-lz;-lm;-lz;-lgio-2.0;-lz;-lresolv;-lselinux;-lmount;-lgmodule-2.0;-pthread;-ldl;-lgobject-2.0;-lffi;-lglib-2.0;-pthread;-lpcre;-pthread
|
||||
GTK_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
|
||||
GTK_STATIC_LIBDIR:INTERNAL=
|
||||
GTK_STATIC_LIBRARIES:INTERNAL=gtk-3;atk-bridge-2.0;atspi;dbus-1;pthread;systemd;gdk-3;gio-2.0;Xinerama;Xi;Xrandr;Xcursor;Xcomposite;Xdamage;Xfixes;xkbcommon;wayland-cursor;wayland-egl;wayland-client;epoxy;dl;pangocairo-1.0;pangoft2-1.0;harfbuzz;m;graphite2;pango-1.0;m;atk-1.0;cairo-gobject;cairo;z;pixman-1;fontconfig;expat;freetype;expat;freetype;png16;m;z;m;xcb-shm;xcb-render;Xrender;Xext;X11;pthread;xcb;Xau;Xdmcp;gdk_pixbuf-2.0;m;png16;m;z;m;z;gio-2.0;z;resolv;selinux;mount;gmodule-2.0;dl;gobject-2.0;ffi;glib-2.0;pcre
|
||||
GTK_STATIC_LIBRARY_DIRS:INTERNAL=
|
||||
GTK_STATIC_LIBS:INTERNAL=
|
||||
GTK_STATIC_LIBS_L:INTERNAL=
|
||||
GTK_STATIC_LIBS_OTHER:INTERNAL=
|
||||
GTK_STATIC_LIBS_PATHS:INTERNAL=
|
||||
GTK_VERSION:INTERNAL=3.22.30
|
||||
GTK_gtk+-3.0_INCLUDEDIR:INTERNAL=
|
||||
GTK_gtk+-3.0_LIBDIR:INTERNAL=
|
||||
GTK_gtk+-3.0_PREFIX:INTERNAL=
|
||||
GTK_gtk+-3.0_VERSION:INTERNAL=
|
||||
//ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARY
|
||||
OPENSSL_CRYPTO_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENSSL_INCLUDE_DIR
|
||||
OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENSSL_SSL_LIBRARY
|
||||
OPENSSL_SSL_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
|
||||
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||
_OPENSSL_CFLAGS:INTERNAL=
|
||||
_OPENSSL_CFLAGS_I:INTERNAL=
|
||||
_OPENSSL_CFLAGS_OTHER:INTERNAL=
|
||||
_OPENSSL_FOUND:INTERNAL=1
|
||||
_OPENSSL_INCLUDEDIR:INTERNAL=/usr/include
|
||||
_OPENSSL_INCLUDE_DIRS:INTERNAL=
|
||||
_OPENSSL_LDFLAGS:INTERNAL=-lssl;-lcrypto
|
||||
_OPENSSL_LDFLAGS_OTHER:INTERNAL=
|
||||
_OPENSSL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
_OPENSSL_LIBRARIES:INTERNAL=ssl;crypto
|
||||
_OPENSSL_LIBRARY_DIRS:INTERNAL=
|
||||
_OPENSSL_LIBS:INTERNAL=
|
||||
_OPENSSL_LIBS_L:INTERNAL=
|
||||
_OPENSSL_LIBS_OTHER:INTERNAL=
|
||||
_OPENSSL_LIBS_PATHS:INTERNAL=
|
||||
_OPENSSL_PREFIX:INTERNAL=/usr
|
||||
_OPENSSL_STATIC_CFLAGS:INTERNAL=
|
||||
_OPENSSL_STATIC_CFLAGS_I:INTERNAL=
|
||||
_OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL=
|
||||
_OPENSSL_STATIC_INCLUDE_DIRS:INTERNAL=
|
||||
_OPENSSL_STATIC_LDFLAGS:INTERNAL=-lssl;-lcrypto;-ldl;-pthread
|
||||
_OPENSSL_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
|
||||
_OPENSSL_STATIC_LIBDIR:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBRARIES:INTERNAL=ssl;crypto;dl
|
||||
_OPENSSL_STATIC_LIBRARY_DIRS:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS_L:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS_OTHER:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS_PATHS:INTERNAL=
|
||||
_OPENSSL_VERSION:INTERNAL=1.1.1
|
||||
_OPENSSL_openssl_INCLUDEDIR:INTERNAL=
|
||||
_OPENSSL_openssl_LIBDIR:INTERNAL=
|
||||
_OPENSSL_openssl_PREFIX:INTERNAL=
|
||||
_OPENSSL_openssl_VERSION:INTERNAL=
|
||||
__pkg_config_arguments_GLIB:INTERNAL=REQUIRED;glib-2.0
|
||||
__pkg_config_arguments_GST:INTERNAL=REQUIRED;gstreamer-1.0>=1.4;gstreamer-sdp-1.0>=1.4;gstreamer-video-1.0>=1.4;gstreamer-app-1.0>=1.4
|
||||
__pkg_config_arguments_GTK:INTERNAL=REQUIRED;gtk+-3.0
|
||||
__pkg_config_arguments__OPENSSL:INTERNAL=QUIET;openssl
|
||||
__pkg_config_checked_GLIB:INTERNAL=1
|
||||
__pkg_config_checked_GST:INTERNAL=1
|
||||
__pkg_config_checked_GTK:INTERNAL=1
|
||||
__pkg_config_checked__OPENSSL:INTERNAL=1
|
||||
prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||
|
||||
73
build/CMakeFiles/3.10.2/CMakeCCompiler.cmake
Normal file
73
build/CMakeFiles/3.10.2/CMakeCCompiler.cmake
Normal file
@@ -0,0 +1,73 @@
|
||||
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||
set(CMAKE_C_COMPILER_ARG1 "")
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_VERSION "7.5.0")
|
||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
|
||||
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||
|
||||
set(CMAKE_C_PLATFORM_ID "Linux")
|
||||
set(CMAKE_C_SIMULATE_ID "")
|
||||
set(CMAKE_C_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||
set(CMAKE_C_COMPILER_LOADED 1)
|
||||
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||
set(CMAKE_COMPILER_IS_MINGW )
|
||||
set(CMAKE_COMPILER_IS_CYGWIN )
|
||||
if(CMAKE_COMPILER_IS_CYGWIN)
|
||||
set(CYGWIN 1)
|
||||
set(UNIX 1)
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||
|
||||
if(CMAKE_COMPILER_IS_MINGW)
|
||||
set(MINGW 1)
|
||||
endif()
|
||||
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||
set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
||||
|
||||
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
|
||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
75
build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake
Normal file
75
build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake
Normal file
@@ -0,0 +1,75 @@
|
||||
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_VERSION "7.5.0")
|
||||
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
|
||||
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17")
|
||||
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||
|
||||
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||
set(CMAKE_CXX_SIMULATE_ID "")
|
||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||
set(CMAKE_COMPILER_IS_MINGW )
|
||||
set(CMAKE_COMPILER_IS_CYGWIN )
|
||||
if(CMAKE_COMPILER_IS_CYGWIN)
|
||||
set(CYGWIN 1)
|
||||
set(UNIX 1)
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||
|
||||
if(CMAKE_COMPILER_IS_MINGW)
|
||||
set(MINGW 1)
|
||||
endif()
|
||||
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP)
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
||||
|
||||
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
BIN
build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
Executable file
BIN
build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
Executable file
Binary file not shown.
BIN
build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
Executable file
BIN
build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
Executable file
Binary file not shown.
15
build/CMakeFiles/3.10.2/CMakeSystem.cmake
Normal file
15
build/CMakeFiles/3.10.2/CMakeSystem.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
set(CMAKE_HOST_SYSTEM "Linux-5.3.0-46-generic")
|
||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "5.3.0-46-generic")
|
||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_SYSTEM "Linux-5.3.0-46-generic")
|
||||
set(CMAKE_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_SYSTEM_VERSION "5.3.0-46-generic")
|
||||
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
|
||||
set(CMAKE_SYSTEM_LOADED 1)
|
||||
598
build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c
Normal file
598
build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c
Normal file
@@ -0,0 +1,598 @@
|
||||
#ifdef __cplusplus
|
||||
# error "A C++ compiler has been selected for C."
|
||||
#endif
|
||||
|
||||
#if defined(__18CXX)
|
||||
# define ID_VOID_MAIN
|
||||
#endif
|
||||
#if defined(__CLASSIC_C__)
|
||||
/* cv-qualifiers did not exist in K&R C */
|
||||
# define const
|
||||
# define volatile
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number components: V=Version, R=Revision, P=Patch
|
||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||
|
||||
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||
# define COMPILER_ID "Intel"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
/* __INTEL_COMPILER = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||
# if defined(__INTEL_COMPILER_UPDATE)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||
# else
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||
# endif
|
||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||
# endif
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__PATHCC__)
|
||||
# define COMPILER_ID "PathScale"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||
# if defined(__PATHCC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||
# define COMPILER_ID "Embarcadero"
|
||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||
|
||||
#elif defined(__BORLANDC__)
|
||||
# define COMPILER_ID "Borland"
|
||||
/* __BORLANDC__ = 0xVRR */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||
|
||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||
# define COMPILER_ID "Watcom"
|
||||
/* __WATCOMC__ = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# define COMPILER_ID "OpenWatcom"
|
||||
/* __WATCOMC__ = VVRP + 1100 */
|
||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SUNPRO_C)
|
||||
# define COMPILER_ID "SunPro"
|
||||
# if __SUNPRO_C >= 0x5100
|
||||
/* __SUNPRO_C = 0xVRRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||
# else
|
||||
/* __SUNPRO_CC = 0xVRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||
# endif
|
||||
|
||||
#elif defined(__HP_cc)
|
||||
# define COMPILER_ID "HP"
|
||||
/* __HP_cc = VVRRPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||
|
||||
#elif defined(__DECC)
|
||||
# define COMPILER_ID "Compaq"
|
||||
/* __DECC_VER = VVRRTPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||
|
||||
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||
# define COMPILER_ID "zOS"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||
# define COMPILER_ID "XL"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||
# define COMPILER_ID "VisualAge"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__PGI)
|
||||
# define COMPILER_ID "PGI"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||
# if defined(__PGIC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_CRAYC)
|
||||
# define COMPILER_ID "Cray"
|
||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# define COMPILER_ID "TI"
|
||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||
|
||||
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
|
||||
# define COMPILER_ID "Fujitsu"
|
||||
|
||||
#elif defined(__TINYC__)
|
||||
# define COMPILER_ID "TinyCC"
|
||||
|
||||
#elif defined(__BCC__)
|
||||
# define COMPILER_ID "Bruce"
|
||||
|
||||
#elif defined(__SCO_VERSION__)
|
||||
# define COMPILER_ID "SCO"
|
||||
|
||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||
# define COMPILER_ID "AppleClang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||
|
||||
#elif defined(__clang__)
|
||||
# define COMPILER_ID "Clang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__GNUC__)
|
||||
# define COMPILER_ID "GNU"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# define COMPILER_ID "MSVC"
|
||||
/* _MSC_VER = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# if defined(_MSC_FULL_VER)
|
||||
# if _MSC_VER >= 1400
|
||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||
# else
|
||||
/* _MSC_FULL_VER = VVRRPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||
# endif
|
||||
# endif
|
||||
# if defined(_MSC_BUILD)
|
||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||
# endif
|
||||
|
||||
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||
# define COMPILER_ID "ADSP"
|
||||
#if defined(__VISUALDSPVERSION__)
|
||||
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||
#endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# define COMPILER_ID "IAR"
|
||||
# if defined(__VER__)
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# endif
|
||||
|
||||
#elif defined(__ARMCC_VERSION)
|
||||
# define COMPILER_ID "ARMCC"
|
||||
#if __ARMCC_VERSION >= 1000000
|
||||
/* __ARMCC_VERSION = VRRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#else
|
||||
/* __ARMCC_VERSION = VRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#endif
|
||||
|
||||
|
||||
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||
# define COMPILER_ID "SDCC"
|
||||
# if defined(__SDCC_VERSION_MAJOR)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||
# else
|
||||
/* SDCC = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
|
||||
# define COMPILER_ID "MIPSpro"
|
||||
# if defined(_SGI_COMPILER_VERSION)
|
||||
/* _SGI_COMPILER_VERSION = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
|
||||
# else
|
||||
/* _COMPILER_VERSION = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
|
||||
# endif
|
||||
|
||||
|
||||
/* These compilers are either not known or too old to define an
|
||||
identification macro. Try to identify the platform and guess that
|
||||
it is the native compiler. */
|
||||
#elif defined(__sgi)
|
||||
# define COMPILER_ID "MIPSpro"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpua)
|
||||
# define COMPILER_ID "HP"
|
||||
|
||||
#else /* unknown compiler */
|
||||
# define COMPILER_ID ""
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||
#ifdef SIMULATE_ID
|
||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||
#endif
|
||||
|
||||
#ifdef __QNXNTO__
|
||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||
#endif
|
||||
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||
#endif
|
||||
|
||||
#define STRINGIFY_HELPER(X) #X
|
||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||
|
||||
/* Identify known platforms by name. */
|
||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
#elif defined(__CYGWIN__)
|
||||
# define PLATFORM_ID "Cygwin"
|
||||
|
||||
#elif defined(__MINGW32__)
|
||||
# define PLATFORM_ID "MinGW"
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
# define PLATFORM_ID "Darwin"
|
||||
|
||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||
# define PLATFORM_ID "Windows"
|
||||
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||
# define PLATFORM_ID "FreeBSD"
|
||||
|
||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||
# define PLATFORM_ID "NetBSD"
|
||||
|
||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||
# define PLATFORM_ID "OpenBSD"
|
||||
|
||||
#elif defined(__sun) || defined(sun)
|
||||
# define PLATFORM_ID "SunOS"
|
||||
|
||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||
# define PLATFORM_ID "AIX"
|
||||
|
||||
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
|
||||
# define PLATFORM_ID "IRIX"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpux__)
|
||||
# define PLATFORM_ID "HP-UX"
|
||||
|
||||
#elif defined(__HAIKU__)
|
||||
# define PLATFORM_ID "Haiku"
|
||||
|
||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||
# define PLATFORM_ID "BeOS"
|
||||
|
||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||
# define PLATFORM_ID "QNX"
|
||||
|
||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||
# define PLATFORM_ID "Tru64"
|
||||
|
||||
#elif defined(__riscos) || defined(__riscos__)
|
||||
# define PLATFORM_ID "RISCos"
|
||||
|
||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||
# define PLATFORM_ID "SINIX"
|
||||
|
||||
#elif defined(__UNIX_SV__)
|
||||
# define PLATFORM_ID "UNIX_SV"
|
||||
|
||||
#elif defined(__bsdos__)
|
||||
# define PLATFORM_ID "BSDOS"
|
||||
|
||||
#elif defined(_MPRAS) || defined(MPRAS)
|
||||
# define PLATFORM_ID "MP-RAS"
|
||||
|
||||
#elif defined(__osf) || defined(__osf__)
|
||||
# define PLATFORM_ID "OSF1"
|
||||
|
||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||
# define PLATFORM_ID "SCO_SV"
|
||||
|
||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||
# define PLATFORM_ID "ULTRIX"
|
||||
|
||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||
# define PLATFORM_ID "Xenix"
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(__LINUX__)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
# elif defined(__DOS__)
|
||||
# define PLATFORM_ID "DOS"
|
||||
|
||||
# elif defined(__OS2__)
|
||||
# define PLATFORM_ID "OS2"
|
||||
|
||||
# elif defined(__WINDOWS__)
|
||||
# define PLATFORM_ID "Windows3x"
|
||||
|
||||
# else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
# endif
|
||||
|
||||
#else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
|
||||
#endif
|
||||
|
||||
/* For windows compilers MSVC and Intel we can determine
|
||||
the architecture of the compiler being used. This is because
|
||||
the compilers do not have flags that can change the architecture,
|
||||
but rather depend on which compiler is being used
|
||||
*/
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
# if defined(_M_IA64)
|
||||
# define ARCHITECTURE_ID "IA64"
|
||||
|
||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# elif defined(_M_ARM64)
|
||||
# define ARCHITECTURE_ID "ARM64"
|
||||
|
||||
# elif defined(_M_ARM)
|
||||
# if _M_ARM == 4
|
||||
# define ARCHITECTURE_ID "ARMV4I"
|
||||
# elif _M_ARM == 5
|
||||
# define ARCHITECTURE_ID "ARMV5I"
|
||||
# else
|
||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||
# endif
|
||||
|
||||
# elif defined(_M_MIPS)
|
||||
# define ARCHITECTURE_ID "MIPS"
|
||||
|
||||
# elif defined(_M_SH)
|
||||
# define ARCHITECTURE_ID "SHx"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(_M_I86)
|
||||
# define ARCHITECTURE_ID "I86"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# if defined(__ICCARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__ICCAVR__)
|
||||
# define ARCHITECTURE_ID "AVR"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
#else
|
||||
# define ARCHITECTURE_ID
|
||||
#endif
|
||||
|
||||
/* Convert integer to decimal digit literals. */
|
||||
#define DEC(n) \
|
||||
('0' + (((n) / 10000000)%10)), \
|
||||
('0' + (((n) / 1000000)%10)), \
|
||||
('0' + (((n) / 100000)%10)), \
|
||||
('0' + (((n) / 10000)%10)), \
|
||||
('0' + (((n) / 1000)%10)), \
|
||||
('0' + (((n) / 100)%10)), \
|
||||
('0' + (((n) / 10)%10)), \
|
||||
('0' + ((n) % 10))
|
||||
|
||||
/* Convert integer to hex digit literals. */
|
||||
#define HEX(n) \
|
||||
('0' + ((n)>>28 & 0xF)), \
|
||||
('0' + ((n)>>24 & 0xF)), \
|
||||
('0' + ((n)>>20 & 0xF)), \
|
||||
('0' + ((n)>>16 & 0xF)), \
|
||||
('0' + ((n)>>12 & 0xF)), \
|
||||
('0' + ((n)>>8 & 0xF)), \
|
||||
('0' + ((n)>>4 & 0xF)), \
|
||||
('0' + ((n) & 0xF))
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
char const info_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||
COMPILER_VERSION_MAJOR,
|
||||
# ifdef COMPILER_VERSION_MINOR
|
||||
'.', COMPILER_VERSION_MINOR,
|
||||
# ifdef COMPILER_VERSION_PATCH
|
||||
'.', COMPILER_VERSION_PATCH,
|
||||
# ifdef COMPILER_VERSION_TWEAK
|
||||
'.', COMPILER_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the internal version number. */
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
char const info_version_internal[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||
'i','n','t','e','r','n','a','l','[',
|
||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
char const info_simulate_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||
SIMULATE_VERSION_MAJOR,
|
||||
# ifdef SIMULATE_VERSION_MINOR
|
||||
'.', SIMULATE_VERSION_MINOR,
|
||||
# ifdef SIMULATE_VERSION_PATCH
|
||||
'.', SIMULATE_VERSION_PATCH,
|
||||
# ifdef SIMULATE_VERSION_TWEAK
|
||||
'.', SIMULATE_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||
|
||||
|
||||
|
||||
|
||||
#if !defined(__STDC__)
|
||||
# if defined(_MSC_VER) && !defined(__clang__)
|
||||
# define C_DIALECT "90"
|
||||
# else
|
||||
# define C_DIALECT
|
||||
# endif
|
||||
#elif __STDC_VERSION__ >= 201000L
|
||||
# define C_DIALECT "11"
|
||||
#elif __STDC_VERSION__ >= 199901L
|
||||
# define C_DIALECT "99"
|
||||
#else
|
||||
# define C_DIALECT "90"
|
||||
#endif
|
||||
const char* info_language_dialect_default =
|
||||
"INFO" ":" "dialect_default[" C_DIALECT "]";
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
#ifdef ID_VOID_MAIN
|
||||
void main() {}
|
||||
#else
|
||||
# if defined(__CLASSIC_C__)
|
||||
int main(argc, argv) int argc; char *argv[];
|
||||
# else
|
||||
int main(int argc, char* argv[])
|
||||
# endif
|
||||
{
|
||||
int require = 0;
|
||||
require += info_compiler[argc];
|
||||
require += info_platform[argc];
|
||||
require += info_arch[argc];
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
require += info_version[argc];
|
||||
#endif
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
require += info_version_internal[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_ID
|
||||
require += info_simulate[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
require += info_simulate_version[argc];
|
||||
#endif
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
require += info_cray[argc];
|
||||
#endif
|
||||
require += info_language_dialect_default[argc];
|
||||
(void)argv;
|
||||
return require;
|
||||
}
|
||||
#endif
|
||||
BIN
build/CMakeFiles/3.10.2/CompilerIdC/a.out
Executable file
BIN
build/CMakeFiles/3.10.2/CompilerIdC/a.out
Executable file
Binary file not shown.
576
build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
576
build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
@@ -0,0 +1,576 @@
|
||||
/* This source file must have a .cpp extension so that all C++ compilers
|
||||
recognize the extension without flags. Borland does not know .cxx for
|
||||
example. */
|
||||
#ifndef __cplusplus
|
||||
# error "A C compiler has been selected for C++."
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number components: V=Version, R=Revision, P=Patch
|
||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||
|
||||
#if defined(__COMO__)
|
||||
# define COMPILER_ID "Comeau"
|
||||
/* __COMO_VERSION__ = VRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
|
||||
|
||||
#elif defined(__INTEL_COMPILER) || defined(__ICC)
|
||||
# define COMPILER_ID "Intel"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
/* __INTEL_COMPILER = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||
# if defined(__INTEL_COMPILER_UPDATE)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||
# else
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||
# endif
|
||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||
# endif
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__PATHCC__)
|
||||
# define COMPILER_ID "PathScale"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||
# if defined(__PATHCC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||
# define COMPILER_ID "Embarcadero"
|
||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||
|
||||
#elif defined(__BORLANDC__)
|
||||
# define COMPILER_ID "Borland"
|
||||
/* __BORLANDC__ = 0xVRR */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||
|
||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||
# define COMPILER_ID "Watcom"
|
||||
/* __WATCOMC__ = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# define COMPILER_ID "OpenWatcom"
|
||||
/* __WATCOMC__ = VVRP + 1100 */
|
||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SUNPRO_CC)
|
||||
# define COMPILER_ID "SunPro"
|
||||
# if __SUNPRO_CC >= 0x5100
|
||||
/* __SUNPRO_CC = 0xVRRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||
# else
|
||||
/* __SUNPRO_CC = 0xVRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||
# endif
|
||||
|
||||
#elif defined(__HP_aCC)
|
||||
# define COMPILER_ID "HP"
|
||||
/* __HP_aCC = VVRRPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||
|
||||
#elif defined(__DECCXX)
|
||||
# define COMPILER_ID "Compaq"
|
||||
/* __DECCXX_VER = VVRRTPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||
|
||||
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||
# define COMPILER_ID "zOS"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||
# define COMPILER_ID "XL"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||
# define COMPILER_ID "VisualAge"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__PGI)
|
||||
# define COMPILER_ID "PGI"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||
# if defined(__PGIC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_CRAYC)
|
||||
# define COMPILER_ID "Cray"
|
||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# define COMPILER_ID "TI"
|
||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||
|
||||
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
|
||||
# define COMPILER_ID "Fujitsu"
|
||||
|
||||
#elif defined(__SCO_VERSION__)
|
||||
# define COMPILER_ID "SCO"
|
||||
|
||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||
# define COMPILER_ID "AppleClang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||
|
||||
#elif defined(__clang__)
|
||||
# define COMPILER_ID "Clang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||
# define COMPILER_ID "GNU"
|
||||
# if defined(__GNUC__)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||
# else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# define COMPILER_ID "MSVC"
|
||||
/* _MSC_VER = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# if defined(_MSC_FULL_VER)
|
||||
# if _MSC_VER >= 1400
|
||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||
# else
|
||||
/* _MSC_FULL_VER = VVRRPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||
# endif
|
||||
# endif
|
||||
# if defined(_MSC_BUILD)
|
||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||
# endif
|
||||
|
||||
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||
# define COMPILER_ID "ADSP"
|
||||
#if defined(__VISUALDSPVERSION__)
|
||||
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||
#endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# define COMPILER_ID "IAR"
|
||||
# if defined(__VER__)
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# endif
|
||||
|
||||
#elif defined(__ARMCC_VERSION)
|
||||
# define COMPILER_ID "ARMCC"
|
||||
#if __ARMCC_VERSION >= 1000000
|
||||
/* __ARMCC_VERSION = VRRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#else
|
||||
/* __ARMCC_VERSION = VRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#endif
|
||||
|
||||
|
||||
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
|
||||
# define COMPILER_ID "MIPSpro"
|
||||
# if defined(_SGI_COMPILER_VERSION)
|
||||
/* _SGI_COMPILER_VERSION = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
|
||||
# else
|
||||
/* _COMPILER_VERSION = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
|
||||
# endif
|
||||
|
||||
|
||||
/* These compilers are either not known or too old to define an
|
||||
identification macro. Try to identify the platform and guess that
|
||||
it is the native compiler. */
|
||||
#elif defined(__sgi)
|
||||
# define COMPILER_ID "MIPSpro"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpua)
|
||||
# define COMPILER_ID "HP"
|
||||
|
||||
#else /* unknown compiler */
|
||||
# define COMPILER_ID ""
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||
#ifdef SIMULATE_ID
|
||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||
#endif
|
||||
|
||||
#ifdef __QNXNTO__
|
||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||
#endif
|
||||
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||
#endif
|
||||
|
||||
#define STRINGIFY_HELPER(X) #X
|
||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||
|
||||
/* Identify known platforms by name. */
|
||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
#elif defined(__CYGWIN__)
|
||||
# define PLATFORM_ID "Cygwin"
|
||||
|
||||
#elif defined(__MINGW32__)
|
||||
# define PLATFORM_ID "MinGW"
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
# define PLATFORM_ID "Darwin"
|
||||
|
||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||
# define PLATFORM_ID "Windows"
|
||||
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||
# define PLATFORM_ID "FreeBSD"
|
||||
|
||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||
# define PLATFORM_ID "NetBSD"
|
||||
|
||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||
# define PLATFORM_ID "OpenBSD"
|
||||
|
||||
#elif defined(__sun) || defined(sun)
|
||||
# define PLATFORM_ID "SunOS"
|
||||
|
||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||
# define PLATFORM_ID "AIX"
|
||||
|
||||
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
|
||||
# define PLATFORM_ID "IRIX"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpux__)
|
||||
# define PLATFORM_ID "HP-UX"
|
||||
|
||||
#elif defined(__HAIKU__)
|
||||
# define PLATFORM_ID "Haiku"
|
||||
|
||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||
# define PLATFORM_ID "BeOS"
|
||||
|
||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||
# define PLATFORM_ID "QNX"
|
||||
|
||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||
# define PLATFORM_ID "Tru64"
|
||||
|
||||
#elif defined(__riscos) || defined(__riscos__)
|
||||
# define PLATFORM_ID "RISCos"
|
||||
|
||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||
# define PLATFORM_ID "SINIX"
|
||||
|
||||
#elif defined(__UNIX_SV__)
|
||||
# define PLATFORM_ID "UNIX_SV"
|
||||
|
||||
#elif defined(__bsdos__)
|
||||
# define PLATFORM_ID "BSDOS"
|
||||
|
||||
#elif defined(_MPRAS) || defined(MPRAS)
|
||||
# define PLATFORM_ID "MP-RAS"
|
||||
|
||||
#elif defined(__osf) || defined(__osf__)
|
||||
# define PLATFORM_ID "OSF1"
|
||||
|
||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||
# define PLATFORM_ID "SCO_SV"
|
||||
|
||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||
# define PLATFORM_ID "ULTRIX"
|
||||
|
||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||
# define PLATFORM_ID "Xenix"
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(__LINUX__)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
# elif defined(__DOS__)
|
||||
# define PLATFORM_ID "DOS"
|
||||
|
||||
# elif defined(__OS2__)
|
||||
# define PLATFORM_ID "OS2"
|
||||
|
||||
# elif defined(__WINDOWS__)
|
||||
# define PLATFORM_ID "Windows3x"
|
||||
|
||||
# else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
# endif
|
||||
|
||||
#else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
|
||||
#endif
|
||||
|
||||
/* For windows compilers MSVC and Intel we can determine
|
||||
the architecture of the compiler being used. This is because
|
||||
the compilers do not have flags that can change the architecture,
|
||||
but rather depend on which compiler is being used
|
||||
*/
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
# if defined(_M_IA64)
|
||||
# define ARCHITECTURE_ID "IA64"
|
||||
|
||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# elif defined(_M_ARM64)
|
||||
# define ARCHITECTURE_ID "ARM64"
|
||||
|
||||
# elif defined(_M_ARM)
|
||||
# if _M_ARM == 4
|
||||
# define ARCHITECTURE_ID "ARMV4I"
|
||||
# elif _M_ARM == 5
|
||||
# define ARCHITECTURE_ID "ARMV5I"
|
||||
# else
|
||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||
# endif
|
||||
|
||||
# elif defined(_M_MIPS)
|
||||
# define ARCHITECTURE_ID "MIPS"
|
||||
|
||||
# elif defined(_M_SH)
|
||||
# define ARCHITECTURE_ID "SHx"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(_M_I86)
|
||||
# define ARCHITECTURE_ID "I86"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# if defined(__ICCARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__ICCAVR__)
|
||||
# define ARCHITECTURE_ID "AVR"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
#else
|
||||
# define ARCHITECTURE_ID
|
||||
#endif
|
||||
|
||||
/* Convert integer to decimal digit literals. */
|
||||
#define DEC(n) \
|
||||
('0' + (((n) / 10000000)%10)), \
|
||||
('0' + (((n) / 1000000)%10)), \
|
||||
('0' + (((n) / 100000)%10)), \
|
||||
('0' + (((n) / 10000)%10)), \
|
||||
('0' + (((n) / 1000)%10)), \
|
||||
('0' + (((n) / 100)%10)), \
|
||||
('0' + (((n) / 10)%10)), \
|
||||
('0' + ((n) % 10))
|
||||
|
||||
/* Convert integer to hex digit literals. */
|
||||
#define HEX(n) \
|
||||
('0' + ((n)>>28 & 0xF)), \
|
||||
('0' + ((n)>>24 & 0xF)), \
|
||||
('0' + ((n)>>20 & 0xF)), \
|
||||
('0' + ((n)>>16 & 0xF)), \
|
||||
('0' + ((n)>>12 & 0xF)), \
|
||||
('0' + ((n)>>8 & 0xF)), \
|
||||
('0' + ((n)>>4 & 0xF)), \
|
||||
('0' + ((n) & 0xF))
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
char const info_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||
COMPILER_VERSION_MAJOR,
|
||||
# ifdef COMPILER_VERSION_MINOR
|
||||
'.', COMPILER_VERSION_MINOR,
|
||||
# ifdef COMPILER_VERSION_PATCH
|
||||
'.', COMPILER_VERSION_PATCH,
|
||||
# ifdef COMPILER_VERSION_TWEAK
|
||||
'.', COMPILER_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the internal version number. */
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
char const info_version_internal[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||
'i','n','t','e','r','n','a','l','[',
|
||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
char const info_simulate_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||
SIMULATE_VERSION_MAJOR,
|
||||
# ifdef SIMULATE_VERSION_MINOR
|
||||
'.', SIMULATE_VERSION_MINOR,
|
||||
# ifdef SIMULATE_VERSION_PATCH
|
||||
'.', SIMULATE_VERSION_PATCH,
|
||||
# ifdef SIMULATE_VERSION_TWEAK
|
||||
'.', SIMULATE_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||
|
||||
|
||||
|
||||
|
||||
#if defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||
#define CXX_STD _MSVC_LANG
|
||||
#else
|
||||
#define CXX_STD __cplusplus
|
||||
#endif
|
||||
|
||||
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
|
||||
#if CXX_STD > 201402L
|
||||
"17"
|
||||
#elif CXX_STD >= 201402L
|
||||
"14"
|
||||
#elif CXX_STD >= 201103L
|
||||
"11"
|
||||
#else
|
||||
"98"
|
||||
#endif
|
||||
"]";
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int require = 0;
|
||||
require += info_compiler[argc];
|
||||
require += info_platform[argc];
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
require += info_version[argc];
|
||||
#endif
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
require += info_version_internal[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_ID
|
||||
require += info_simulate[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
require += info_simulate_version[argc];
|
||||
#endif
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
require += info_cray[argc];
|
||||
#endif
|
||||
require += info_language_dialect_default[argc];
|
||||
(void)argv;
|
||||
return require;
|
||||
}
|
||||
BIN
build/CMakeFiles/3.10.2/CompilerIdCXX/a.out
Executable file
BIN
build/CMakeFiles/3.10.2/CompilerIdCXX/a.out
Executable file
Binary file not shown.
90
build/CMakeFiles/AirplayServer.dir/CXX.includecache
Normal file
90
build/CMakeFiles/AirplayServer.dir/CXX.includecache
Normal file
@@ -0,0 +1,90 @@
|
||||
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||
|
||||
#IncludeRegexScan: ^.*$
|
||||
|
||||
#IncludeRegexComplain: ^$
|
||||
|
||||
#IncludeRegexTransform:
|
||||
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
dnssd.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
stream.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
stdbool.h
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
stdint.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/log.h
|
||||
cstdio
|
||||
-
|
||||
stdarg.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/renderers/audio_renderer.h
|
||||
stdint.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
../lib/logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
../lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
video_renderer.h
|
||||
/home/julian/UxPlay/renderers/video_renderer.h
|
||||
|
||||
/home/julian/UxPlay/renderers/video_renderer.h
|
||||
stdint.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
../lib/logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
../lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
|
||||
/home/julian/UxPlay/uxplay.cpp
|
||||
stddef.h
|
||||
-
|
||||
cstring
|
||||
-
|
||||
signal.h
|
||||
-
|
||||
unistd.h
|
||||
-
|
||||
string
|
||||
-
|
||||
vector
|
||||
-
|
||||
fstream
|
||||
-
|
||||
log.h
|
||||
/home/julian/UxPlay/log.h
|
||||
lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
lib/stream.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
lib/logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
renderers/video_renderer.h
|
||||
/home/julian/UxPlay/renderers/video_renderer.h
|
||||
renderers/audio_renderer.h
|
||||
/home/julian/UxPlay/renderers/audio_renderer.h
|
||||
|
||||
45
build/CMakeFiles/AirplayServer.dir/DependInfo.cmake
Normal file
45
build/CMakeFiles/AirplayServer.dir/DependInfo.cmake
Normal file
@@ -0,0 +1,45 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
"CXX"
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
set(CMAKE_DEPENDS_CHECK_CXX
|
||||
"/home/julian/UxPlay/uxplay.cpp" "/home/julian/UxPlay/build/CMakeFiles/AirplayServer.dir/uxplay.cpp.o"
|
||||
)
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
|
||||
# The include file search paths:
|
||||
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||
"../renderers"
|
||||
"/usr/include/glib-2.0"
|
||||
"/usr/lib/x86_64-linux-gnu/glib-2.0/include"
|
||||
"/usr/include/gtk-3.0"
|
||||
"/usr/include/at-spi2-atk/2.0"
|
||||
"/usr/include/at-spi-2.0"
|
||||
"/usr/include/dbus-1.0"
|
||||
"/usr/lib/x86_64-linux-gnu/dbus-1.0/include"
|
||||
"/usr/include/gio-unix-2.0"
|
||||
"/usr/include/cairo"
|
||||
"/usr/include/pango-1.0"
|
||||
"/usr/include/harfbuzz"
|
||||
"/usr/include/atk-1.0"
|
||||
"/usr/include/pixman-1"
|
||||
"/usr/include/freetype2"
|
||||
"/usr/include/libpng16"
|
||||
"/usr/include/gdk-pixbuf-2.0"
|
||||
"/usr/include/gstreamer-1.0"
|
||||
"/usr/include/orc-0.4"
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
"/home/julian/UxPlay/build/renderers/CMakeFiles/renderers.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/curve25519.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/ed25519.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/playfair/CMakeFiles/playfair.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/plist/CMakeFiles/plist.dir/DependInfo.cmake"
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
120
build/CMakeFiles/AirplayServer.dir/build.make
Normal file
120
build/CMakeFiles/AirplayServer.dir/build.make
Normal file
@@ -0,0 +1,120 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/AirplayServer.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/AirplayServer.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/AirplayServer.dir/flags.make
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: CMakeFiles/AirplayServer.dir/flags.make
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../uxplay.cpp
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/AirplayServer.dir/uxplay.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/AirplayServer.dir/uxplay.cpp.o -c /home/julian/UxPlay/uxplay.cpp
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/AirplayServer.dir/uxplay.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/julian/UxPlay/uxplay.cpp > CMakeFiles/AirplayServer.dir/uxplay.cpp.i
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/AirplayServer.dir/uxplay.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/julian/UxPlay/uxplay.cpp -o CMakeFiles/AirplayServer.dir/uxplay.cpp.s
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o.requires:
|
||||
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/uxplay.cpp.o.requires
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o.provides: CMakeFiles/AirplayServer.dir/uxplay.cpp.o.requires
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/uxplay.cpp.o.provides.build
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/uxplay.cpp.o.provides
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o.provides.build: CMakeFiles/AirplayServer.dir/uxplay.cpp.o
|
||||
|
||||
|
||||
# Object files for target AirplayServer
|
||||
AirplayServer_OBJECTS = \
|
||||
"CMakeFiles/AirplayServer.dir/uxplay.cpp.o"
|
||||
|
||||
# External object files for target AirplayServer
|
||||
AirplayServer_EXTERNAL_OBJECTS =
|
||||
|
||||
AirplayServer: CMakeFiles/AirplayServer.dir/uxplay.cpp.o
|
||||
AirplayServer: CMakeFiles/AirplayServer.dir/build.make
|
||||
AirplayServer: renderers/librenderers.a
|
||||
AirplayServer: lib/libairplay.a
|
||||
AirplayServer: lib/curve25519/libcurve25519.a
|
||||
AirplayServer: lib/ed25519/libed25519.a
|
||||
AirplayServer: lib/playfair/libplayfair.a
|
||||
AirplayServer: lib/plist/libplist.a
|
||||
AirplayServer: /usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
AirplayServer: CMakeFiles/AirplayServer.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable AirplayServer"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/AirplayServer.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/AirplayServer.dir/build: AirplayServer
|
||||
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/build
|
||||
|
||||
CMakeFiles/AirplayServer.dir/requires: CMakeFiles/AirplayServer.dir/uxplay.cpp.o.requires
|
||||
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/requires
|
||||
|
||||
CMakeFiles/AirplayServer.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/AirplayServer.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/clean
|
||||
|
||||
CMakeFiles/AirplayServer.dir/depend:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/julian/UxPlay /home/julian/UxPlay /home/julian/UxPlay/build /home/julian/UxPlay/build /home/julian/UxPlay/build/CMakeFiles/AirplayServer.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/depend
|
||||
|
||||
10
build/CMakeFiles/AirplayServer.dir/cmake_clean.cmake
Normal file
10
build/CMakeFiles/AirplayServer.dir/cmake_clean.cmake
Normal file
@@ -0,0 +1,10 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/AirplayServer.dir/uxplay.cpp.o"
|
||||
"AirplayServer.pdb"
|
||||
"AirplayServer"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang CXX)
|
||||
include(CMakeFiles/AirplayServer.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
13
build/CMakeFiles/AirplayServer.dir/depend.internal
Normal file
13
build/CMakeFiles/AirplayServer.dir/depend.internal
Normal file
@@ -0,0 +1,13 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
/home/julian/UxPlay/log.h
|
||||
/home/julian/UxPlay/renderers/audio_renderer.h
|
||||
/home/julian/UxPlay/renderers/video_renderer.h
|
||||
/home/julian/UxPlay/uxplay.cpp
|
||||
13
build/CMakeFiles/AirplayServer.dir/depend.make
Normal file
13
build/CMakeFiles/AirplayServer.dir/depend.make
Normal file
@@ -0,0 +1,13 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../lib/dnssd.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../lib/logger.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../lib/raop.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../lib/raop_ntp.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../lib/stream.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../log.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../renderers/audio_renderer.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../renderers/video_renderer.h
|
||||
CMakeFiles/AirplayServer.dir/uxplay.cpp.o: ../uxplay.cpp
|
||||
|
||||
10
build/CMakeFiles/AirplayServer.dir/flags.make
Normal file
10
build/CMakeFiles/AirplayServer.dir/flags.make
Normal file
@@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# compile CXX with /usr/bin/c++
|
||||
CXX_FLAGS = -std=gnu++11
|
||||
|
||||
CXX_DEFINES =
|
||||
|
||||
CXX_INCLUDES = -I/home/julian/UxPlay/renderers -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/gio-unix-2.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/atk-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gstreamer-1.0 -I/usr/include/orc-0.4
|
||||
|
||||
1
build/CMakeFiles/AirplayServer.dir/link.txt
Normal file
1
build/CMakeFiles/AirplayServer.dir/link.txt
Normal file
@@ -0,0 +1 @@
|
||||
/usr/bin/c++ CMakeFiles/AirplayServer.dir/uxplay.cpp.o -o AirplayServer renderers/librenderers.a lib/libairplay.a -lglib-2.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lgstsdp-1.0 -lgstvideo-1.0 -lgstapp-1.0 -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0 -lpthread lib/curve25519/libcurve25519.a lib/ed25519/libed25519.a lib/playfair/libplayfair.a lib/plist/libplist.a /usr/lib/x86_64-linux-gnu/libcrypto.so -ldns_sd -lgobject-2.0 -lglib-2.0
|
||||
3
build/CMakeFiles/AirplayServer.dir/progress.make
Normal file
3
build/CMakeFiles/AirplayServer.dir/progress.make
Normal file
@@ -0,0 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
|
||||
BIN
build/CMakeFiles/AirplayServer.dir/uxplay.cpp.o
Normal file
BIN
build/CMakeFiles/AirplayServer.dir/uxplay.cpp.o
Normal file
Binary file not shown.
16
build/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
16
build/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
@@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/julian/UxPlay")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/julian/UxPlay/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||
631
build/CMakeFiles/CMakeOutput.log
Normal file
631
build/CMakeFiles/CMakeOutput.log
Normal file
@@ -0,0 +1,631 @@
|
||||
The system is: Linux - 5.3.0-46-generic - x86_64
|
||||
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||
Compiler: /usr/bin/cc
|
||||
Build flags:
|
||||
Id flags:
|
||||
|
||||
The output was:
|
||||
0
|
||||
|
||||
|
||||
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||
|
||||
The C compiler identification is GNU, found in "/home/julian/UxPlay/build/CMakeFiles/3.10.2/CompilerIdC/a.out"
|
||||
|
||||
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||
Compiler: /usr/bin/c++
|
||||
Build flags:
|
||||
Id flags:
|
||||
|
||||
The output was:
|
||||
0
|
||||
|
||||
|
||||
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||
|
||||
The CXX compiler identification is GNU, found in "/home/julian/UxPlay/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
|
||||
|
||||
Determining if the C compiler works passed with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_33af3/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_33af3.dir/build.make CMakeFiles/cmTC_33af3.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building C object CMakeFiles/cmTC_33af3.dir/testCCompiler.c.o
|
||||
/usr/bin/cc -o CMakeFiles/cmTC_33af3.dir/testCCompiler.c.o -c /home/julian/UxPlay/build/CMakeFiles/CMakeTmp/testCCompiler.c
|
||||
Linking C executable cmTC_33af3
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_33af3.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_33af3.dir/testCCompiler.c.o -o cmTC_33af3
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Detecting C compiler ABI info compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_26eaa/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_26eaa.dir/build.make CMakeFiles/cmTC_26eaa.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building C object CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o
|
||||
/usr/bin/cc -o CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
|
||||
Linking C executable cmTC_26eaa
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26eaa.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -v CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o -o cmTC_26eaa
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/cc
|
||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
|
||||
OFFLOAD_TARGET_NAMES=nvptx-none
|
||||
OFFLOAD_TARGET_DEFAULT=1
|
||||
Target: x86_64-linux-gnu
|
||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
|
||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_26eaa' '-mtune=generic' '-march=x86-64'
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKz3Sqc.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_26eaa /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_26eaa' '-mtune=generic' '-march=x86-64'
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Parsed C implicit link information from above output:
|
||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||
ignore line: [Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_26eaa/fast"]
|
||||
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_26eaa.dir/build.make CMakeFiles/cmTC_26eaa.dir/build]
|
||||
ignore line: [make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten]
|
||||
ignore line: [Building C object CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o]
|
||||
ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Linking C executable cmTC_26eaa]
|
||||
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26eaa.dir/link.txt --verbose=1]
|
||||
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o -o cmTC_26eaa ]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
|
||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
|
||||
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
||||
ignore line: [Target: x86_64-linux-gnu]
|
||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_26eaa' '-mtune=generic' '-march=x86-64']
|
||||
link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKz3Sqc.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_26eaa /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
|
||||
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=/tmp/ccKz3Sqc.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [--build-id] ==> ignore
|
||||
arg [--eh-frame-hdr] ==> ignore
|
||||
arg [-m] ==> ignore
|
||||
arg [elf_x86_64] ==> ignore
|
||||
arg [--hash-style=gnu] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-dynamic-linker] ==> ignore
|
||||
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||
arg [-pie] ==> ignore
|
||||
arg [-znow] ==> ignore
|
||||
arg [-zrelro] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_26eaa] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
|
||||
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
|
||||
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
|
||||
arg [CMakeFiles/cmTC_26eaa.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--push-state] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [--pop-state] ==> ignore
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--push-state] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [--pop-state] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
|
||||
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
|
||||
collapse library dir [/lib/../lib] ==> [/lib]
|
||||
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
||||
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
|
||||
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
|
||||
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
|
||||
implicit fwks: []
|
||||
|
||||
|
||||
|
||||
|
||||
Detecting C [-std=c11] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_d7c78/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_d7c78.dir/build.make CMakeFiles/cmTC_d7c78.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building C object CMakeFiles/cmTC_d7c78.dir/feature_tests.c.o
|
||||
/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_d7c78.dir/feature_tests.c.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.c
|
||||
Linking C executable cmTC_d7c78
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d7c78.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_d7c78.dir/feature_tests.c.o -o cmTC_d7c78
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: C_FEATURE:1c_function_prototypes
|
||||
Feature record: C_FEATURE:1c_restrict
|
||||
Feature record: C_FEATURE:1c_static_assert
|
||||
Feature record: C_FEATURE:1c_variadic_macros
|
||||
|
||||
|
||||
Detecting C [-std=c99] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_72ef3/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_72ef3.dir/build.make CMakeFiles/cmTC_72ef3.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building C object CMakeFiles/cmTC_72ef3.dir/feature_tests.c.o
|
||||
/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_72ef3.dir/feature_tests.c.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.c
|
||||
Linking C executable cmTC_72ef3
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_72ef3.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_72ef3.dir/feature_tests.c.o -o cmTC_72ef3
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: C_FEATURE:1c_function_prototypes
|
||||
Feature record: C_FEATURE:1c_restrict
|
||||
Feature record: C_FEATURE:0c_static_assert
|
||||
Feature record: C_FEATURE:1c_variadic_macros
|
||||
|
||||
|
||||
Detecting C [-std=c90] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_0a245/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_0a245.dir/build.make CMakeFiles/cmTC_0a245.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building C object CMakeFiles/cmTC_0a245.dir/feature_tests.c.o
|
||||
/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_0a245.dir/feature_tests.c.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.c
|
||||
Linking C executable cmTC_0a245
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0a245.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_0a245.dir/feature_tests.c.o -o cmTC_0a245
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: C_FEATURE:1c_function_prototypes
|
||||
Feature record: C_FEATURE:0c_restrict
|
||||
Feature record: C_FEATURE:0c_static_assert
|
||||
Feature record: C_FEATURE:0c_variadic_macros
|
||||
Determining if the CXX compiler works passed with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_c9547/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_c9547.dir/build.make CMakeFiles/cmTC_c9547.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building CXX object CMakeFiles/cmTC_c9547.dir/testCXXCompiler.cxx.o
|
||||
/usr/bin/c++ -o CMakeFiles/cmTC_c9547.dir/testCXXCompiler.cxx.o -c /home/julian/UxPlay/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
||||
Linking CXX executable cmTC_c9547
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9547.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ CMakeFiles/cmTC_c9547.dir/testCXXCompiler.cxx.o -o cmTC_c9547
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Detecting CXX compiler ABI info compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_5ce24/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_5ce24.dir/build.make CMakeFiles/cmTC_5ce24.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building CXX object CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o
|
||||
/usr/bin/c++ -o CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
|
||||
Linking CXX executable cmTC_5ce24
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5ce24.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ -v CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5ce24
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/c++
|
||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
|
||||
OFFLOAD_TARGET_NAMES=nvptx-none
|
||||
OFFLOAD_TARGET_DEFAULT=1
|
||||
Target: x86_64-linux-gnu
|
||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
|
||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5ce24' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxSpl3N.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5ce24 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5ce24' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Parsed CXX implicit link information from above output:
|
||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||
ignore line: [Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5ce24/fast"]
|
||||
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_5ce24.dir/build.make CMakeFiles/cmTC_5ce24.dir/build]
|
||||
ignore line: [make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten]
|
||||
ignore line: [Building CXX object CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o]
|
||||
ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Linking CXX executable cmTC_5ce24]
|
||||
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5ce24.dir/link.txt --verbose=1]
|
||||
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5ce24 ]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
|
||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
|
||||
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
||||
ignore line: [Target: x86_64-linux-gnu]
|
||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5ce24' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
|
||||
link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxSpl3N.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5ce24 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
|
||||
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=/tmp/ccxSpl3N.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [--build-id] ==> ignore
|
||||
arg [--eh-frame-hdr] ==> ignore
|
||||
arg [-m] ==> ignore
|
||||
arg [elf_x86_64] ==> ignore
|
||||
arg [--hash-style=gnu] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-dynamic-linker] ==> ignore
|
||||
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||
arg [-pie] ==> ignore
|
||||
arg [-znow] ==> ignore
|
||||
arg [-zrelro] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_5ce24] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
|
||||
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
|
||||
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
|
||||
arg [CMakeFiles/cmTC_5ce24.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
||||
arg [-lstdc++] ==> lib [stdc++]
|
||||
arg [-lm] ==> lib [m]
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
|
||||
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
|
||||
collapse library dir [/lib/../lib] ==> [/lib]
|
||||
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
||||
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
|
||||
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
|
||||
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
|
||||
implicit fwks: []
|
||||
|
||||
|
||||
|
||||
|
||||
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_14e39/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_14e39.dir/build.make CMakeFiles/cmTC_14e39.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building CXX object CMakeFiles/cmTC_14e39.dir/feature_tests.cxx.o
|
||||
/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_14e39.dir/feature_tests.cxx.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.cxx
|
||||
Linking CXX executable cmTC_14e39
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_14e39.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ CMakeFiles/cmTC_14e39.dir/feature_tests.cxx.o -o cmTC_14e39
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_alias_templates
|
||||
Feature record: CXX_FEATURE:1cxx_alignas
|
||||
Feature record: CXX_FEATURE:1cxx_alignof
|
||||
Feature record: CXX_FEATURE:1cxx_attributes
|
||||
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
|
||||
Feature record: CXX_FEATURE:1cxx_auto_type
|
||||
Feature record: CXX_FEATURE:1cxx_binary_literals
|
||||
Feature record: CXX_FEATURE:1cxx_constexpr
|
||||
Feature record: CXX_FEATURE:1cxx_contextual_conversions
|
||||
Feature record: CXX_FEATURE:1cxx_decltype
|
||||
Feature record: CXX_FEATURE:1cxx_decltype_auto
|
||||
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
|
||||
Feature record: CXX_FEATURE:1cxx_default_function_template_args
|
||||
Feature record: CXX_FEATURE:1cxx_defaulted_functions
|
||||
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_delegating_constructors
|
||||
Feature record: CXX_FEATURE:1cxx_deleted_functions
|
||||
Feature record: CXX_FEATURE:1cxx_digit_separators
|
||||
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
|
||||
Feature record: CXX_FEATURE:1cxx_explicit_conversions
|
||||
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
|
||||
Feature record: CXX_FEATURE:1cxx_extern_templates
|
||||
Feature record: CXX_FEATURE:1cxx_final
|
||||
Feature record: CXX_FEATURE:1cxx_func_identifier
|
||||
Feature record: CXX_FEATURE:1cxx_generalized_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_generic_lambdas
|
||||
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
|
||||
Feature record: CXX_FEATURE:1cxx_inline_namespaces
|
||||
Feature record: CXX_FEATURE:1cxx_lambdas
|
||||
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
|
||||
Feature record: CXX_FEATURE:1cxx_local_type_template_args
|
||||
Feature record: CXX_FEATURE:1cxx_long_long_type
|
||||
Feature record: CXX_FEATURE:1cxx_noexcept
|
||||
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
|
||||
Feature record: CXX_FEATURE:1cxx_nullptr
|
||||
Feature record: CXX_FEATURE:1cxx_override
|
||||
Feature record: CXX_FEATURE:1cxx_range_for
|
||||
Feature record: CXX_FEATURE:1cxx_raw_string_literals
|
||||
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
|
||||
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
|
||||
Feature record: CXX_FEATURE:1cxx_return_type_deduction
|
||||
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
|
||||
Feature record: CXX_FEATURE:1cxx_rvalue_references
|
||||
Feature record: CXX_FEATURE:1cxx_sizeof_member
|
||||
Feature record: CXX_FEATURE:1cxx_static_assert
|
||||
Feature record: CXX_FEATURE:1cxx_strong_enums
|
||||
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||
Feature record: CXX_FEATURE:1cxx_thread_local
|
||||
Feature record: CXX_FEATURE:1cxx_trailing_return_types
|
||||
Feature record: CXX_FEATURE:1cxx_unicode_literals
|
||||
Feature record: CXX_FEATURE:1cxx_uniform_initialization
|
||||
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
|
||||
Feature record: CXX_FEATURE:1cxx_user_literals
|
||||
Feature record: CXX_FEATURE:1cxx_variable_templates
|
||||
Feature record: CXX_FEATURE:1cxx_variadic_macros
|
||||
Feature record: CXX_FEATURE:1cxx_variadic_templates
|
||||
|
||||
|
||||
Detecting CXX [-std=c++14] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_581e2/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_581e2.dir/build.make CMakeFiles/cmTC_581e2.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building CXX object CMakeFiles/cmTC_581e2.dir/feature_tests.cxx.o
|
||||
/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_581e2.dir/feature_tests.cxx.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.cxx
|
||||
Linking CXX executable cmTC_581e2
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_581e2.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ CMakeFiles/cmTC_581e2.dir/feature_tests.cxx.o -o cmTC_581e2
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_alias_templates
|
||||
Feature record: CXX_FEATURE:1cxx_alignas
|
||||
Feature record: CXX_FEATURE:1cxx_alignof
|
||||
Feature record: CXX_FEATURE:1cxx_attributes
|
||||
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
|
||||
Feature record: CXX_FEATURE:1cxx_auto_type
|
||||
Feature record: CXX_FEATURE:1cxx_binary_literals
|
||||
Feature record: CXX_FEATURE:1cxx_constexpr
|
||||
Feature record: CXX_FEATURE:1cxx_contextual_conversions
|
||||
Feature record: CXX_FEATURE:1cxx_decltype
|
||||
Feature record: CXX_FEATURE:1cxx_decltype_auto
|
||||
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
|
||||
Feature record: CXX_FEATURE:1cxx_default_function_template_args
|
||||
Feature record: CXX_FEATURE:1cxx_defaulted_functions
|
||||
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_delegating_constructors
|
||||
Feature record: CXX_FEATURE:1cxx_deleted_functions
|
||||
Feature record: CXX_FEATURE:1cxx_digit_separators
|
||||
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
|
||||
Feature record: CXX_FEATURE:1cxx_explicit_conversions
|
||||
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
|
||||
Feature record: CXX_FEATURE:1cxx_extern_templates
|
||||
Feature record: CXX_FEATURE:1cxx_final
|
||||
Feature record: CXX_FEATURE:1cxx_func_identifier
|
||||
Feature record: CXX_FEATURE:1cxx_generalized_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_generic_lambdas
|
||||
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
|
||||
Feature record: CXX_FEATURE:1cxx_inline_namespaces
|
||||
Feature record: CXX_FEATURE:1cxx_lambdas
|
||||
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
|
||||
Feature record: CXX_FEATURE:1cxx_local_type_template_args
|
||||
Feature record: CXX_FEATURE:1cxx_long_long_type
|
||||
Feature record: CXX_FEATURE:1cxx_noexcept
|
||||
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
|
||||
Feature record: CXX_FEATURE:1cxx_nullptr
|
||||
Feature record: CXX_FEATURE:1cxx_override
|
||||
Feature record: CXX_FEATURE:1cxx_range_for
|
||||
Feature record: CXX_FEATURE:1cxx_raw_string_literals
|
||||
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
|
||||
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
|
||||
Feature record: CXX_FEATURE:1cxx_return_type_deduction
|
||||
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
|
||||
Feature record: CXX_FEATURE:1cxx_rvalue_references
|
||||
Feature record: CXX_FEATURE:1cxx_sizeof_member
|
||||
Feature record: CXX_FEATURE:1cxx_static_assert
|
||||
Feature record: CXX_FEATURE:1cxx_strong_enums
|
||||
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||
Feature record: CXX_FEATURE:1cxx_thread_local
|
||||
Feature record: CXX_FEATURE:1cxx_trailing_return_types
|
||||
Feature record: CXX_FEATURE:1cxx_unicode_literals
|
||||
Feature record: CXX_FEATURE:1cxx_uniform_initialization
|
||||
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
|
||||
Feature record: CXX_FEATURE:1cxx_user_literals
|
||||
Feature record: CXX_FEATURE:1cxx_variable_templates
|
||||
Feature record: CXX_FEATURE:1cxx_variadic_macros
|
||||
Feature record: CXX_FEATURE:1cxx_variadic_templates
|
||||
|
||||
|
||||
Detecting CXX [-std=c++11] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_1c87c/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_1c87c.dir/build.make CMakeFiles/cmTC_1c87c.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building CXX object CMakeFiles/cmTC_1c87c.dir/feature_tests.cxx.o
|
||||
/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_1c87c.dir/feature_tests.cxx.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.cxx
|
||||
Linking CXX executable cmTC_1c87c
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1c87c.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ CMakeFiles/cmTC_1c87c.dir/feature_tests.cxx.o -o cmTC_1c87c
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_alias_templates
|
||||
Feature record: CXX_FEATURE:1cxx_alignas
|
||||
Feature record: CXX_FEATURE:1cxx_alignof
|
||||
Feature record: CXX_FEATURE:1cxx_attributes
|
||||
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
|
||||
Feature record: CXX_FEATURE:1cxx_auto_type
|
||||
Feature record: CXX_FEATURE:0cxx_binary_literals
|
||||
Feature record: CXX_FEATURE:1cxx_constexpr
|
||||
Feature record: CXX_FEATURE:0cxx_contextual_conversions
|
||||
Feature record: CXX_FEATURE:1cxx_decltype
|
||||
Feature record: CXX_FEATURE:0cxx_decltype_auto
|
||||
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
|
||||
Feature record: CXX_FEATURE:1cxx_default_function_template_args
|
||||
Feature record: CXX_FEATURE:1cxx_defaulted_functions
|
||||
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
|
||||
Feature record: CXX_FEATURE:1cxx_delegating_constructors
|
||||
Feature record: CXX_FEATURE:1cxx_deleted_functions
|
||||
Feature record: CXX_FEATURE:0cxx_digit_separators
|
||||
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
|
||||
Feature record: CXX_FEATURE:1cxx_explicit_conversions
|
||||
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
|
||||
Feature record: CXX_FEATURE:1cxx_extern_templates
|
||||
Feature record: CXX_FEATURE:1cxx_final
|
||||
Feature record: CXX_FEATURE:1cxx_func_identifier
|
||||
Feature record: CXX_FEATURE:1cxx_generalized_initializers
|
||||
Feature record: CXX_FEATURE:0cxx_generic_lambdas
|
||||
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
|
||||
Feature record: CXX_FEATURE:1cxx_inline_namespaces
|
||||
Feature record: CXX_FEATURE:1cxx_lambdas
|
||||
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
|
||||
Feature record: CXX_FEATURE:1cxx_local_type_template_args
|
||||
Feature record: CXX_FEATURE:1cxx_long_long_type
|
||||
Feature record: CXX_FEATURE:1cxx_noexcept
|
||||
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
|
||||
Feature record: CXX_FEATURE:1cxx_nullptr
|
||||
Feature record: CXX_FEATURE:1cxx_override
|
||||
Feature record: CXX_FEATURE:1cxx_range_for
|
||||
Feature record: CXX_FEATURE:1cxx_raw_string_literals
|
||||
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
|
||||
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
|
||||
Feature record: CXX_FEATURE:0cxx_return_type_deduction
|
||||
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
|
||||
Feature record: CXX_FEATURE:1cxx_rvalue_references
|
||||
Feature record: CXX_FEATURE:1cxx_sizeof_member
|
||||
Feature record: CXX_FEATURE:1cxx_static_assert
|
||||
Feature record: CXX_FEATURE:1cxx_strong_enums
|
||||
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||
Feature record: CXX_FEATURE:1cxx_thread_local
|
||||
Feature record: CXX_FEATURE:1cxx_trailing_return_types
|
||||
Feature record: CXX_FEATURE:1cxx_unicode_literals
|
||||
Feature record: CXX_FEATURE:1cxx_uniform_initialization
|
||||
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
|
||||
Feature record: CXX_FEATURE:1cxx_user_literals
|
||||
Feature record: CXX_FEATURE:0cxx_variable_templates
|
||||
Feature record: CXX_FEATURE:1cxx_variadic_macros
|
||||
Feature record: CXX_FEATURE:1cxx_variadic_templates
|
||||
|
||||
|
||||
Detecting CXX [-std=c++98] compiler features compiled with the following output:
|
||||
Change Dir: /home/julian/UxPlay/build/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command:"/usr/bin/make" "cmTC_ba5da/fast"
|
||||
/usr/bin/make -f CMakeFiles/cmTC_ba5da.dir/build.make CMakeFiles/cmTC_ba5da.dir/build
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird betreten
|
||||
Building CXX object CMakeFiles/cmTC_ba5da.dir/feature_tests.cxx.o
|
||||
/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_ba5da.dir/feature_tests.cxx.o -c /home/julian/UxPlay/build/CMakeFiles/feature_tests.cxx
|
||||
Linking CXX executable cmTC_ba5da
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ba5da.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ CMakeFiles/cmTC_ba5da.dir/feature_tests.cxx.o -o cmTC_ba5da
|
||||
make[1]: Verzeichnis „/home/julian/UxPlay/build/CMakeFiles/CMakeTmp“ wird verlassen
|
||||
|
||||
|
||||
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
|
||||
Feature record: CXX_FEATURE:0cxx_alias_templates
|
||||
Feature record: CXX_FEATURE:0cxx_alignas
|
||||
Feature record: CXX_FEATURE:0cxx_alignof
|
||||
Feature record: CXX_FEATURE:0cxx_attributes
|
||||
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
|
||||
Feature record: CXX_FEATURE:0cxx_auto_type
|
||||
Feature record: CXX_FEATURE:0cxx_binary_literals
|
||||
Feature record: CXX_FEATURE:0cxx_constexpr
|
||||
Feature record: CXX_FEATURE:0cxx_contextual_conversions
|
||||
Feature record: CXX_FEATURE:0cxx_decltype
|
||||
Feature record: CXX_FEATURE:0cxx_decltype_auto
|
||||
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
|
||||
Feature record: CXX_FEATURE:0cxx_default_function_template_args
|
||||
Feature record: CXX_FEATURE:0cxx_defaulted_functions
|
||||
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
|
||||
Feature record: CXX_FEATURE:0cxx_delegating_constructors
|
||||
Feature record: CXX_FEATURE:0cxx_deleted_functions
|
||||
Feature record: CXX_FEATURE:0cxx_digit_separators
|
||||
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
|
||||
Feature record: CXX_FEATURE:0cxx_explicit_conversions
|
||||
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
|
||||
Feature record: CXX_FEATURE:0cxx_extern_templates
|
||||
Feature record: CXX_FEATURE:0cxx_final
|
||||
Feature record: CXX_FEATURE:0cxx_func_identifier
|
||||
Feature record: CXX_FEATURE:0cxx_generalized_initializers
|
||||
Feature record: CXX_FEATURE:0cxx_generic_lambdas
|
||||
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
|
||||
Feature record: CXX_FEATURE:0cxx_inline_namespaces
|
||||
Feature record: CXX_FEATURE:0cxx_lambdas
|
||||
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
|
||||
Feature record: CXX_FEATURE:0cxx_local_type_template_args
|
||||
Feature record: CXX_FEATURE:0cxx_long_long_type
|
||||
Feature record: CXX_FEATURE:0cxx_noexcept
|
||||
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
|
||||
Feature record: CXX_FEATURE:0cxx_nullptr
|
||||
Feature record: CXX_FEATURE:0cxx_override
|
||||
Feature record: CXX_FEATURE:0cxx_range_for
|
||||
Feature record: CXX_FEATURE:0cxx_raw_string_literals
|
||||
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
|
||||
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
|
||||
Feature record: CXX_FEATURE:0cxx_return_type_deduction
|
||||
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
|
||||
Feature record: CXX_FEATURE:0cxx_rvalue_references
|
||||
Feature record: CXX_FEATURE:0cxx_sizeof_member
|
||||
Feature record: CXX_FEATURE:0cxx_static_assert
|
||||
Feature record: CXX_FEATURE:0cxx_strong_enums
|
||||
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||
Feature record: CXX_FEATURE:0cxx_thread_local
|
||||
Feature record: CXX_FEATURE:0cxx_trailing_return_types
|
||||
Feature record: CXX_FEATURE:0cxx_unicode_literals
|
||||
Feature record: CXX_FEATURE:0cxx_uniform_initialization
|
||||
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
|
||||
Feature record: CXX_FEATURE:0cxx_user_literals
|
||||
Feature record: CXX_FEATURE:0cxx_variable_templates
|
||||
Feature record: CXX_FEATURE:0cxx_variadic_macros
|
||||
Feature record: CXX_FEATURE:0cxx_variadic_templates
|
||||
68
build/CMakeFiles/Makefile.cmake
Normal file
68
build/CMakeFiles/Makefile.cmake
Normal file
@@ -0,0 +1,68 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# The generator used is:
|
||||
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||
|
||||
# The top level Makefile was generated from the following files:
|
||||
set(CMAKE_MAKEFILE_DEPENDS
|
||||
"CMakeCache.txt"
|
||||
"../CMakeLists.txt"
|
||||
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
|
||||
"CMakeFiles/3.10.2/CMakeCXXCompiler.cmake"
|
||||
"CMakeFiles/3.10.2/CMakeSystem.cmake"
|
||||
"../lib/CMakeLists.txt"
|
||||
"../lib/curve25519/CMakeLists.txt"
|
||||
"../lib/ed25519/CMakeLists.txt"
|
||||
"../lib/playfair/CMakeLists.txt"
|
||||
"../lib/plist/CMakeLists.txt"
|
||||
"../renderers/CMakeLists.txt"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/FindOpenSSL.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/FindPackageMessage.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/FindPkgConfig.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-C.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Platform/Linux-GNU.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Platform/Linux.cmake"
|
||||
"/usr/share/cmake-3.10/Modules/Platform/UnixPaths.cmake"
|
||||
)
|
||||
|
||||
# The corresponding makefile is:
|
||||
set(CMAKE_MAKEFILE_OUTPUTS
|
||||
"Makefile"
|
||||
"CMakeFiles/cmake.check_cache"
|
||||
)
|
||||
|
||||
# Byproducts of CMake generate step:
|
||||
set(CMAKE_MAKEFILE_PRODUCTS
|
||||
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"lib/curve25519/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"lib/ed25519/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"lib/playfair/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"lib/plist/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"lib/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"renderers/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
)
|
||||
|
||||
# Dependency information for all targets:
|
||||
set(CMAKE_DEPEND_INFO_FILES
|
||||
"CMakeFiles/AirplayServer.dir/DependInfo.cmake"
|
||||
"lib/curve25519/CMakeFiles/curve25519.dir/DependInfo.cmake"
|
||||
"lib/ed25519/CMakeFiles/ed25519.dir/DependInfo.cmake"
|
||||
"lib/playfair/CMakeFiles/playfair.dir/DependInfo.cmake"
|
||||
"lib/plist/CMakeFiles/plist.dir/DependInfo.cmake"
|
||||
"lib/CMakeFiles/airplay.dir/DependInfo.cmake"
|
||||
"renderers/CMakeFiles/renderers.dir/DependInfo.cmake"
|
||||
)
|
||||
450
build/CMakeFiles/Makefile2
Normal file
450
build/CMakeFiles/Makefile2
Normal file
@@ -0,0 +1,450 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# The main recursive all target
|
||||
all:
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# The main recursive preinstall target
|
||||
preinstall:
|
||||
|
||||
.PHONY : preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/AirplayServer.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/AirplayServer.dir/all: lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
CMakeFiles/AirplayServer.dir/all: lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
CMakeFiles/AirplayServer.dir/all: lib/playfair/CMakeFiles/playfair.dir/all
|
||||
CMakeFiles/AirplayServer.dir/all: lib/plist/CMakeFiles/plist.dir/all
|
||||
CMakeFiles/AirplayServer.dir/all: lib/CMakeFiles/airplay.dir/all
|
||||
CMakeFiles/AirplayServer.dir/all: renderers/CMakeFiles/renderers.dir/all
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/depend
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=1,2 "Built target AirplayServer"
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: CMakeFiles/AirplayServer.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/AirplayServer.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 56
|
||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/AirplayServer.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
AirplayServer: CMakeFiles/AirplayServer.dir/rule
|
||||
|
||||
.PHONY : AirplayServer
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/AirplayServer.dir/clean:
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/clean
|
||||
.PHONY : CMakeFiles/AirplayServer.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: CMakeFiles/AirplayServer.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory lib/curve25519
|
||||
|
||||
# Convenience name for "all" pass in the directory.
|
||||
lib/curve25519/all: lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
|
||||
.PHONY : lib/curve25519/all
|
||||
|
||||
# Convenience name for "clean" pass in the directory.
|
||||
lib/curve25519/clean: lib/curve25519/CMakeFiles/curve25519.dir/clean
|
||||
|
||||
.PHONY : lib/curve25519/clean
|
||||
|
||||
# Convenience name for "preinstall" pass in the directory.
|
||||
lib/curve25519/preinstall:
|
||||
|
||||
.PHONY : lib/curve25519/preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target lib/curve25519/CMakeFiles/curve25519.dir
|
||||
|
||||
# All Build rule for target.
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/all:
|
||||
$(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/depend
|
||||
$(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=22,23 "Built target curve25519"
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 2
|
||||
$(MAKE) -f CMakeFiles/Makefile2 lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
curve25519: lib/curve25519/CMakeFiles/curve25519.dir/rule
|
||||
|
||||
.PHONY : curve25519
|
||||
|
||||
# clean rule for target.
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/clean:
|
||||
$(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/clean
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: lib/curve25519/CMakeFiles/curve25519.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory lib/ed25519
|
||||
|
||||
# Convenience name for "all" pass in the directory.
|
||||
lib/ed25519/all: lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
|
||||
.PHONY : lib/ed25519/all
|
||||
|
||||
# Convenience name for "clean" pass in the directory.
|
||||
lib/ed25519/clean: lib/ed25519/CMakeFiles/ed25519.dir/clean
|
||||
|
||||
.PHONY : lib/ed25519/clean
|
||||
|
||||
# Convenience name for "preinstall" pass in the directory.
|
||||
lib/ed25519/preinstall:
|
||||
|
||||
.PHONY : lib/ed25519/preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target lib/ed25519/CMakeFiles/ed25519.dir
|
||||
|
||||
# All Build rule for target.
|
||||
lib/ed25519/CMakeFiles/ed25519.dir/all:
|
||||
$(MAKE) -f lib/ed25519/CMakeFiles/ed25519.dir/build.make lib/ed25519/CMakeFiles/ed25519.dir/depend
|
||||
$(MAKE) -f lib/ed25519/CMakeFiles/ed25519.dir/build.make lib/ed25519/CMakeFiles/ed25519.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=24,25,26,27,28,29,30,31,32,33,34 "Built target ed25519"
|
||||
.PHONY : lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
lib/ed25519/CMakeFiles/ed25519.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 11
|
||||
$(MAKE) -f CMakeFiles/Makefile2 lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : lib/ed25519/CMakeFiles/ed25519.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
ed25519: lib/ed25519/CMakeFiles/ed25519.dir/rule
|
||||
|
||||
.PHONY : ed25519
|
||||
|
||||
# clean rule for target.
|
||||
lib/ed25519/CMakeFiles/ed25519.dir/clean:
|
||||
$(MAKE) -f lib/ed25519/CMakeFiles/ed25519.dir/build.make lib/ed25519/CMakeFiles/ed25519.dir/clean
|
||||
.PHONY : lib/ed25519/CMakeFiles/ed25519.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: lib/ed25519/CMakeFiles/ed25519.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory lib/playfair
|
||||
|
||||
# Convenience name for "all" pass in the directory.
|
||||
lib/playfair/all: lib/playfair/CMakeFiles/playfair.dir/all
|
||||
|
||||
.PHONY : lib/playfair/all
|
||||
|
||||
# Convenience name for "clean" pass in the directory.
|
||||
lib/playfair/clean: lib/playfair/CMakeFiles/playfair.dir/clean
|
||||
|
||||
.PHONY : lib/playfair/clean
|
||||
|
||||
# Convenience name for "preinstall" pass in the directory.
|
||||
lib/playfair/preinstall:
|
||||
|
||||
.PHONY : lib/playfair/preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target lib/playfair/CMakeFiles/playfair.dir
|
||||
|
||||
# All Build rule for target.
|
||||
lib/playfair/CMakeFiles/playfair.dir/all:
|
||||
$(MAKE) -f lib/playfair/CMakeFiles/playfair.dir/build.make lib/playfair/CMakeFiles/playfair.dir/depend
|
||||
$(MAKE) -f lib/playfair/CMakeFiles/playfair.dir/build.make lib/playfair/CMakeFiles/playfair.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=35,36,37,38,39,40 "Built target playfair"
|
||||
.PHONY : lib/playfair/CMakeFiles/playfair.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: lib/playfair/CMakeFiles/playfair.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
lib/playfair/CMakeFiles/playfair.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 6
|
||||
$(MAKE) -f CMakeFiles/Makefile2 lib/playfair/CMakeFiles/playfair.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : lib/playfair/CMakeFiles/playfair.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
playfair: lib/playfair/CMakeFiles/playfair.dir/rule
|
||||
|
||||
.PHONY : playfair
|
||||
|
||||
# clean rule for target.
|
||||
lib/playfair/CMakeFiles/playfair.dir/clean:
|
||||
$(MAKE) -f lib/playfair/CMakeFiles/playfair.dir/build.make lib/playfair/CMakeFiles/playfair.dir/clean
|
||||
.PHONY : lib/playfair/CMakeFiles/playfair.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: lib/playfair/CMakeFiles/playfair.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory lib/plist
|
||||
|
||||
# Convenience name for "all" pass in the directory.
|
||||
lib/plist/all: lib/plist/CMakeFiles/plist.dir/all
|
||||
|
||||
.PHONY : lib/plist/all
|
||||
|
||||
# Convenience name for "clean" pass in the directory.
|
||||
lib/plist/clean: lib/plist/CMakeFiles/plist.dir/clean
|
||||
|
||||
.PHONY : lib/plist/clean
|
||||
|
||||
# Convenience name for "preinstall" pass in the directory.
|
||||
lib/plist/preinstall:
|
||||
|
||||
.PHONY : lib/plist/preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target lib/plist/CMakeFiles/plist.dir
|
||||
|
||||
# All Build rule for target.
|
||||
lib/plist/CMakeFiles/plist.dir/all:
|
||||
$(MAKE) -f lib/plist/CMakeFiles/plist.dir/build.make lib/plist/CMakeFiles/plist.dir/depend
|
||||
$(MAKE) -f lib/plist/CMakeFiles/plist.dir/build.make lib/plist/CMakeFiles/plist.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=41,42,43,44,45,46,47,48,49,50,51,52,53 "Built target plist"
|
||||
.PHONY : lib/plist/CMakeFiles/plist.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: lib/plist/CMakeFiles/plist.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
lib/plist/CMakeFiles/plist.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 13
|
||||
$(MAKE) -f CMakeFiles/Makefile2 lib/plist/CMakeFiles/plist.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : lib/plist/CMakeFiles/plist.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
plist: lib/plist/CMakeFiles/plist.dir/rule
|
||||
|
||||
.PHONY : plist
|
||||
|
||||
# clean rule for target.
|
||||
lib/plist/CMakeFiles/plist.dir/clean:
|
||||
$(MAKE) -f lib/plist/CMakeFiles/plist.dir/build.make lib/plist/CMakeFiles/plist.dir/clean
|
||||
.PHONY : lib/plist/CMakeFiles/plist.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: lib/plist/CMakeFiles/plist.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory lib
|
||||
|
||||
# Convenience name for "all" pass in the directory.
|
||||
lib/all: lib/CMakeFiles/airplay.dir/all
|
||||
|
||||
.PHONY : lib/all
|
||||
|
||||
# Convenience name for "clean" pass in the directory.
|
||||
lib/clean: lib/CMakeFiles/airplay.dir/clean
|
||||
|
||||
.PHONY : lib/clean
|
||||
|
||||
# Convenience name for "preinstall" pass in the directory.
|
||||
lib/preinstall:
|
||||
|
||||
.PHONY : lib/preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target lib/CMakeFiles/airplay.dir
|
||||
|
||||
# All Build rule for target.
|
||||
lib/CMakeFiles/airplay.dir/all: lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
lib/CMakeFiles/airplay.dir/all: lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
lib/CMakeFiles/airplay.dir/all: lib/playfair/CMakeFiles/playfair.dir/all
|
||||
lib/CMakeFiles/airplay.dir/all: lib/plist/CMakeFiles/plist.dir/all
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/depend
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 "Built target airplay"
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: lib/CMakeFiles/airplay.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
lib/CMakeFiles/airplay.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 51
|
||||
$(MAKE) -f CMakeFiles/Makefile2 lib/CMakeFiles/airplay.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
airplay: lib/CMakeFiles/airplay.dir/rule
|
||||
|
||||
.PHONY : airplay
|
||||
|
||||
# clean rule for target.
|
||||
lib/CMakeFiles/airplay.dir/clean:
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/clean
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: lib/CMakeFiles/airplay.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory renderers
|
||||
|
||||
# Convenience name for "all" pass in the directory.
|
||||
renderers/all: renderers/CMakeFiles/renderers.dir/all
|
||||
|
||||
.PHONY : renderers/all
|
||||
|
||||
# Convenience name for "clean" pass in the directory.
|
||||
renderers/clean: renderers/CMakeFiles/renderers.dir/clean
|
||||
|
||||
.PHONY : renderers/clean
|
||||
|
||||
# Convenience name for "preinstall" pass in the directory.
|
||||
renderers/preinstall:
|
||||
|
||||
.PHONY : renderers/preinstall
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target renderers/CMakeFiles/renderers.dir
|
||||
|
||||
# All Build rule for target.
|
||||
renderers/CMakeFiles/renderers.dir/all: lib/curve25519/CMakeFiles/curve25519.dir/all
|
||||
renderers/CMakeFiles/renderers.dir/all: lib/ed25519/CMakeFiles/ed25519.dir/all
|
||||
renderers/CMakeFiles/renderers.dir/all: lib/playfair/CMakeFiles/playfair.dir/all
|
||||
renderers/CMakeFiles/renderers.dir/all: lib/plist/CMakeFiles/plist.dir/all
|
||||
renderers/CMakeFiles/renderers.dir/all: lib/CMakeFiles/airplay.dir/all
|
||||
$(MAKE) -f renderers/CMakeFiles/renderers.dir/build.make renderers/CMakeFiles/renderers.dir/depend
|
||||
$(MAKE) -f renderers/CMakeFiles/renderers.dir/build.make renderers/CMakeFiles/renderers.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=54,55,56 "Built target renderers"
|
||||
.PHONY : renderers/CMakeFiles/renderers.dir/all
|
||||
|
||||
# Include target in all.
|
||||
all: renderers/CMakeFiles/renderers.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
renderers/CMakeFiles/renderers.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 54
|
||||
$(MAKE) -f CMakeFiles/Makefile2 renderers/CMakeFiles/renderers.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : renderers/CMakeFiles/renderers.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
renderers: renderers/CMakeFiles/renderers.dir/rule
|
||||
|
||||
.PHONY : renderers
|
||||
|
||||
# clean rule for target.
|
||||
renderers/CMakeFiles/renderers.dir/clean:
|
||||
$(MAKE) -f renderers/CMakeFiles/renderers.dir/build.make renderers/CMakeFiles/renderers.dir/clean
|
||||
.PHONY : renderers/CMakeFiles/renderers.dir/clean
|
||||
|
||||
# clean rule for target.
|
||||
clean: renderers/CMakeFiles/renderers.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
49
build/CMakeFiles/TargetDirectories.txt
Normal file
49
build/CMakeFiles/TargetDirectories.txt
Normal file
@@ -0,0 +1,49 @@
|
||||
/home/julian/UxPlay/build/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/CMakeFiles/AirplayServer.dir
|
||||
/home/julian/UxPlay/build/CMakeFiles/install.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/curve25519.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/install.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/ed25519.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/install.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/playfair.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/lib/playfair/CMakeFiles/install.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/plist.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/lib/plist/CMakeFiles/install.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/lib/CMakeFiles/install.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/install/strip.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/edit_cache.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/list_install_components.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/install/local.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/rebuild_cache.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/renderers.dir
|
||||
/home/julian/UxPlay/build/renderers/CMakeFiles/install.dir
|
||||
1
build/CMakeFiles/cmake.check_cache
Normal file
1
build/CMakeFiles/cmake.check_cache
Normal file
@@ -0,0 +1 @@
|
||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
BIN
build/CMakeFiles/feature_tests.bin
Executable file
BIN
build/CMakeFiles/feature_tests.bin
Executable file
Binary file not shown.
34
build/CMakeFiles/feature_tests.c
Normal file
34
build/CMakeFiles/feature_tests.c
Normal file
@@ -0,0 +1,34 @@
|
||||
|
||||
const char features[] = {"\n"
|
||||
"C_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"c_function_prototypes\n"
|
||||
"C_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"c_restrict\n"
|
||||
"C_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"c_static_assert\n"
|
||||
"C_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"c_variadic_macros\n"
|
||||
|
||||
};
|
||||
|
||||
int main(int argc, char** argv) { (void)argv; return features[argc]; }
|
||||
405
build/CMakeFiles/feature_tests.cxx
Normal file
405
build/CMakeFiles/feature_tests.cxx
Normal file
@@ -0,0 +1,405 @@
|
||||
|
||||
const char features[] = {"\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_aggregate_default_initializers\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_alias_templates\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_alignas\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_alignof\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_attributes\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_attribute_deprecated\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_auto_type\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_binary_literals\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_constexpr\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_contextual_conversions\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_decltype\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_decltype_auto\n"
|
||||
"CXX_FEATURE:"
|
||||
#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_decltype_incomplete_return_types\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_default_function_template_args\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_defaulted_functions\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_defaulted_move_initializers\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_delegating_constructors\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_deleted_functions\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_digit_separators\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_enum_forward_declarations\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_explicit_conversions\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_extended_friend_declarations\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_extern_templates\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_final\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_func_identifier\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_generalized_initializers\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_generic_lambdas\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_inheriting_constructors\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_inline_namespaces\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_lambdas\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_lambda_init_captures\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_local_type_template_args\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_long_long_type\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_noexcept\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_nonstatic_member_init\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_nullptr\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_override\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_range_for\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_raw_string_literals\n"
|
||||
"CXX_FEATURE:"
|
||||
#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_reference_qualified_functions\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_relaxed_constexpr\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_return_type_deduction\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_right_angle_brackets\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_rvalue_references\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_sizeof_member\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_static_assert\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_strong_enums\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_template_template_parameters\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_thread_local\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_trailing_return_types\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_unicode_literals\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_uniform_initialization\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_unrestricted_unions\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_user_literals\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_variable_templates\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_variadic_macros\n"
|
||||
"CXX_FEATURE:"
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
|
||||
"1"
|
||||
#else
|
||||
"0"
|
||||
#endif
|
||||
"cxx_variadic_templates\n"
|
||||
|
||||
};
|
||||
|
||||
int main(int argc, char** argv) { (void)argv; return features[argc]; }
|
||||
1
build/CMakeFiles/progress.marks
Normal file
1
build/CMakeFiles/progress.marks
Normal file
@@ -0,0 +1 @@
|
||||
56
|
||||
312
build/Makefile
Normal file
312
build/Makefile
Normal file
@@ -0,0 +1,312 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles /home/julian/UxPlay/build/CMakeFiles/progress.marks
|
||||
$(MAKE) -f CMakeFiles/Makefile2 all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
$(MAKE) -f CMakeFiles/Makefile2 clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
$(MAKE) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
$(MAKE) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named AirplayServer
|
||||
|
||||
# Build rule for target.
|
||||
AirplayServer: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 AirplayServer
|
||||
.PHONY : AirplayServer
|
||||
|
||||
# fast build rule for target.
|
||||
AirplayServer/fast:
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/build
|
||||
.PHONY : AirplayServer/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named curve25519
|
||||
|
||||
# Build rule for target.
|
||||
curve25519: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 curve25519
|
||||
.PHONY : curve25519
|
||||
|
||||
# fast build rule for target.
|
||||
curve25519/fast:
|
||||
$(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/build
|
||||
.PHONY : curve25519/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named ed25519
|
||||
|
||||
# Build rule for target.
|
||||
ed25519: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 ed25519
|
||||
.PHONY : ed25519
|
||||
|
||||
# fast build rule for target.
|
||||
ed25519/fast:
|
||||
$(MAKE) -f lib/ed25519/CMakeFiles/ed25519.dir/build.make lib/ed25519/CMakeFiles/ed25519.dir/build
|
||||
.PHONY : ed25519/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named playfair
|
||||
|
||||
# Build rule for target.
|
||||
playfair: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 playfair
|
||||
.PHONY : playfair
|
||||
|
||||
# fast build rule for target.
|
||||
playfair/fast:
|
||||
$(MAKE) -f lib/playfair/CMakeFiles/playfair.dir/build.make lib/playfair/CMakeFiles/playfair.dir/build
|
||||
.PHONY : playfair/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named plist
|
||||
|
||||
# Build rule for target.
|
||||
plist: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 plist
|
||||
.PHONY : plist
|
||||
|
||||
# fast build rule for target.
|
||||
plist/fast:
|
||||
$(MAKE) -f lib/plist/CMakeFiles/plist.dir/build.make lib/plist/CMakeFiles/plist.dir/build
|
||||
.PHONY : plist/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named airplay
|
||||
|
||||
# Build rule for target.
|
||||
airplay: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 airplay
|
||||
.PHONY : airplay
|
||||
|
||||
# fast build rule for target.
|
||||
airplay/fast:
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/build
|
||||
.PHONY : airplay/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named renderers
|
||||
|
||||
# Build rule for target.
|
||||
renderers: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 renderers
|
||||
.PHONY : renderers
|
||||
|
||||
# fast build rule for target.
|
||||
renderers/fast:
|
||||
$(MAKE) -f renderers/CMakeFiles/renderers.dir/build.make renderers/CMakeFiles/renderers.dir/build
|
||||
.PHONY : renderers/fast
|
||||
|
||||
uxplay.o: uxplay.cpp.o
|
||||
|
||||
.PHONY : uxplay.o
|
||||
|
||||
# target to build an object file
|
||||
uxplay.cpp.o:
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/uxplay.cpp.o
|
||||
.PHONY : uxplay.cpp.o
|
||||
|
||||
uxplay.i: uxplay.cpp.i
|
||||
|
||||
.PHONY : uxplay.i
|
||||
|
||||
# target to preprocess a source file
|
||||
uxplay.cpp.i:
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/uxplay.cpp.i
|
||||
.PHONY : uxplay.cpp.i
|
||||
|
||||
uxplay.s: uxplay.cpp.s
|
||||
|
||||
.PHONY : uxplay.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
uxplay.cpp.s:
|
||||
$(MAKE) -f CMakeFiles/AirplayServer.dir/build.make CMakeFiles/AirplayServer.dir/uxplay.cpp.s
|
||||
.PHONY : uxplay.cpp.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... install/strip"
|
||||
@echo "... edit_cache"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... list_install_components"
|
||||
@echo "... install/local"
|
||||
@echo "... AirplayServer"
|
||||
@echo "... install"
|
||||
@echo "... curve25519"
|
||||
@echo "... ed25519"
|
||||
@echo "... playfair"
|
||||
@echo "... plist"
|
||||
@echo "... airplay"
|
||||
@echo "... renderers"
|
||||
@echo "... uxplay.o"
|
||||
@echo "... uxplay.i"
|
||||
@echo "... uxplay.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
64
build/cmake_install.cmake
Normal file
64
build/cmake_install.cmake
Normal file
@@ -0,0 +1,64 @@
|
||||
# Install script for directory: /home/julian/UxPlay
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE PROGRAM FILES "/home/julian/UxPlay/AirplayServer")
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||
# Include the install script for each subdirectory.
|
||||
include("/home/julian/UxPlay/build/lib/curve25519/cmake_install.cmake")
|
||||
include("/home/julian/UxPlay/build/lib/ed25519/cmake_install.cmake")
|
||||
include("/home/julian/UxPlay/build/lib/playfair/cmake_install.cmake")
|
||||
include("/home/julian/UxPlay/build/lib/plist/cmake_install.cmake")
|
||||
include("/home/julian/UxPlay/build/lib/cmake_install.cmake")
|
||||
include("/home/julian/UxPlay/build/renderers/cmake_install.cmake")
|
||||
|
||||
endif()
|
||||
|
||||
if(CMAKE_INSTALL_COMPONENT)
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||
else()
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
file(WRITE "/home/julian/UxPlay/build/${CMAKE_INSTALL_MANIFEST}"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
4
build/install.sh
Normal file
4
build/install.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
cd build/;
|
||||
cmake ..;
|
||||
make -j;
|
||||
16
build/lib/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
16
build/lib/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
@@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/julian/UxPlay")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/julian/UxPlay/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||
520
build/lib/CMakeFiles/airplay.dir/C.includecache
Normal file
520
build/lib/CMakeFiles/airplay.dir/C.includecache
Normal file
@@ -0,0 +1,520 @@
|
||||
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||
|
||||
#IncludeRegexScan: ^.*$
|
||||
|
||||
#IncludeRegexComplain: ^$
|
||||
|
||||
#IncludeRegexTransform:
|
||||
|
||||
/home/julian/UxPlay/lib/byteutils.c
|
||||
time.h
|
||||
-
|
||||
netinet/in.h
|
||||
-
|
||||
byteutils.h
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
endian.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
stdint.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
ws2tcpip.h
|
||||
-
|
||||
windows.h
|
||||
-
|
||||
sys/types.h
|
||||
-
|
||||
sys/socket.h
|
||||
-
|
||||
sys/ioctl.h
|
||||
-
|
||||
sys/time.h
|
||||
-
|
||||
netinet/in.h
|
||||
-
|
||||
arpa/inet.h
|
||||
-
|
||||
unistd.h
|
||||
-
|
||||
errno.h
|
||||
-
|
||||
netdb.h
|
||||
-
|
||||
pthread.h
|
||||
-
|
||||
memalign.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
sockets.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
threads.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
|
||||
/home/julian/UxPlay/lib/crypto.c
|
||||
crypto.h
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
openssl/evp.h
|
||||
-
|
||||
openssl/err.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
stdint.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/curve25519/curve25519.h
|
||||
|
||||
/home/julian/UxPlay/lib/dnssd.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
config.h
|
||||
/home/julian/UxPlay/lib/config.h
|
||||
dnssdint.h
|
||||
/home/julian/UxPlay/lib/dnssdint.h
|
||||
dnssd.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
global.h
|
||||
/home/julian/UxPlay/lib/global.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
utils.h
|
||||
/home/julian/UxPlay/lib/utils.h
|
||||
dns_sd.h
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
dlfcn.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
|
||||
/home/julian/UxPlay/lib/dnssdint.h
|
||||
|
||||
/home/julian/UxPlay/lib/ed25519/ed25519.h
|
||||
stddef.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/fairplay.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/fairplay_playfair.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
fairplay.h
|
||||
/home/julian/UxPlay/lib/fairplay.h
|
||||
playfair/playfair.h
|
||||
/home/julian/UxPlay/lib/playfair/playfair.h
|
||||
|
||||
/home/julian/UxPlay/lib/global.h
|
||||
|
||||
/home/julian/UxPlay/lib/http_parser.c
|
||||
http_parser.h
|
||||
/home/julian/UxPlay/lib/http_parser.h
|
||||
assert.h
|
||||
-
|
||||
stddef.h
|
||||
-
|
||||
ctype.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
limits.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/http_parser.h
|
||||
stddef.h
|
||||
-
|
||||
BaseTsd.h
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/http_request.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
http_request.h
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
http_parser.h
|
||||
/home/julian/UxPlay/lib/http_parser.h
|
||||
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
|
||||
/home/julian/UxPlay/lib/http_response.c
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
http_response.h
|
||||
/home/julian/UxPlay/lib/http_response.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
|
||||
/home/julian/UxPlay/lib/http_response.h
|
||||
|
||||
/home/julian/UxPlay/lib/httpd.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
httpd.h
|
||||
/home/julian/UxPlay/lib/httpd.h
|
||||
netutils.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
http_request.h
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/httpd.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
http_request.h
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
http_response.h
|
||||
/home/julian/UxPlay/lib/http_response.h
|
||||
|
||||
/home/julian/UxPlay/lib/logger.c
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
stdarg.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
|
||||
/home/julian/UxPlay/lib/mirror_buffer.c
|
||||
mirror_buffer.h
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
stdint.h
|
||||
-
|
||||
crypto.h
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
math.h
|
||||
-
|
||||
stdlib.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
stdint.h
|
||||
-
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/netutils.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
|
||||
/home/julian/UxPlay/lib/pairing.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
pairing.h
|
||||
/home/julian/UxPlay/lib/pairing.h
|
||||
curve25519/curve25519.h
|
||||
/home/julian/UxPlay/lib/curve25519/curve25519.h
|
||||
ed25519/ed25519.h
|
||||
/home/julian/UxPlay/lib/ed25519/ed25519.h
|
||||
crypto.h
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
|
||||
/home/julian/UxPlay/lib/pairing.h
|
||||
|
||||
/home/julian/UxPlay/lib/playfair/playfair.h
|
||||
|
||||
/home/julian/UxPlay/lib/plist/plist/plist.h
|
||||
stdint.h
|
||||
-
|
||||
sys/types.h
|
||||
-
|
||||
stdarg.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/raop.c
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
raop.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
pairing.h
|
||||
/home/julian/UxPlay/lib/pairing.h
|
||||
httpd.h
|
||||
/home/julian/UxPlay/lib/httpd.h
|
||||
global.h
|
||||
/home/julian/UxPlay/lib/global.h
|
||||
fairplay.h
|
||||
/home/julian/UxPlay/lib/fairplay.h
|
||||
netutils.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
raop_rtp_mirror.h
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.h
|
||||
raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
raop_handlers.h
|
||||
/home/julian/UxPlay/lib/raop_handlers.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
dnssd.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
stream.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_buffer.c
|
||||
stdlib.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
math.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
raop_buffer.h
|
||||
/home/julian/UxPlay/lib/raop_buffer.h
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
crypto.h
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
stream.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_buffer.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_handlers.h
|
||||
plist/plist/plist.h
|
||||
/home/julian/UxPlay/lib/plist/plist/plist.h
|
||||
dnssdint.h
|
||||
/home/julian/UxPlay/lib/dnssdint.h
|
||||
utils.h
|
||||
/home/julian/UxPlay/lib/utils.h
|
||||
ctype.h
|
||||
-
|
||||
stdlib.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/raop_ntp.c
|
||||
assert.h
|
||||
-
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
threads.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
netutils.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
byteutils.h
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
stdbool.h
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_rtp.c
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
errno.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
raop.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
raop_buffer.h
|
||||
/home/julian/UxPlay/lib/raop_buffer.h
|
||||
netutils.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
byteutils.h
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
mirror_buffer.h
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
stream.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
raop.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.c
|
||||
raop_rtp_mirror.h
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.h
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
errno.h
|
||||
-
|
||||
stdbool.h
|
||||
-
|
||||
raop.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
netutils.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
compat.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
byteutils.h
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
mirror_buffer.h
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
stream.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.h
|
||||
stdint.h
|
||||
-
|
||||
raop.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
logger.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
stdint.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
windows.h
|
||||
-
|
||||
pthread.h
|
||||
-
|
||||
unistd.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/utils.c
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
assert.h
|
||||
-
|
||||
|
||||
/home/julian/UxPlay/lib/utils.h
|
||||
|
||||
45
build/lib/CMakeFiles/airplay.dir/DependInfo.cmake
Normal file
45
build/lib/CMakeFiles/airplay.dir/DependInfo.cmake
Normal file
@@ -0,0 +1,45 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
"C"
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
set(CMAKE_DEPENDS_CHECK_C
|
||||
"/home/julian/UxPlay/lib/byteutils.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/byteutils.c.o"
|
||||
"/home/julian/UxPlay/lib/crypto.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/crypto.c.o"
|
||||
"/home/julian/UxPlay/lib/dnssd.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/dnssd.c.o"
|
||||
"/home/julian/UxPlay/lib/fairplay_playfair.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o"
|
||||
"/home/julian/UxPlay/lib/http_parser.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/http_parser.c.o"
|
||||
"/home/julian/UxPlay/lib/http_request.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/http_request.c.o"
|
||||
"/home/julian/UxPlay/lib/http_response.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/http_response.c.o"
|
||||
"/home/julian/UxPlay/lib/httpd.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/httpd.c.o"
|
||||
"/home/julian/UxPlay/lib/logger.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/logger.c.o"
|
||||
"/home/julian/UxPlay/lib/mirror_buffer.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/mirror_buffer.c.o"
|
||||
"/home/julian/UxPlay/lib/netutils.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/netutils.c.o"
|
||||
"/home/julian/UxPlay/lib/pairing.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/pairing.c.o"
|
||||
"/home/julian/UxPlay/lib/raop.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/raop.c.o"
|
||||
"/home/julian/UxPlay/lib/raop_buffer.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/raop_buffer.c.o"
|
||||
"/home/julian/UxPlay/lib/raop_ntp.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/raop_ntp.c.o"
|
||||
"/home/julian/UxPlay/lib/raop_rtp.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/raop_rtp.c.o"
|
||||
"/home/julian/UxPlay/lib/raop_rtp_mirror.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o"
|
||||
"/home/julian/UxPlay/lib/utils.c" "/home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/utils.c.o"
|
||||
)
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
|
||||
# The include file search paths:
|
||||
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||
"../lib/curve25519"
|
||||
"../lib/ed25519"
|
||||
"../lib/playfair"
|
||||
"../lib/plist/plist"
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
"/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/curve25519.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/ed25519/CMakeFiles/ed25519.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/playfair/CMakeFiles/playfair.dir/DependInfo.cmake"
|
||||
"/home/julian/UxPlay/build/lib/plist/CMakeFiles/plist.dir/DependInfo.cmake"
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
573
build/lib/CMakeFiles/airplay.dir/build.make
Normal file
573
build/lib/CMakeFiles/airplay.dir/build.make
Normal file
@@ -0,0 +1,573 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include lib/CMakeFiles/airplay.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include lib/CMakeFiles/airplay.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include lib/CMakeFiles/airplay.dir/flags.make
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o: ../lib/byteutils.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object lib/CMakeFiles/airplay.dir/byteutils.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/byteutils.c.o -c /home/julian/UxPlay/lib/byteutils.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/byteutils.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/byteutils.c > CMakeFiles/airplay.dir/byteutils.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/byteutils.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/byteutils.c -o CMakeFiles/airplay.dir/byteutils.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/byteutils.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o.provides: lib/CMakeFiles/airplay.dir/byteutils.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/byteutils.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/byteutils.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o.provides.build: lib/CMakeFiles/airplay.dir/byteutils.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o: ../lib/crypto.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object lib/CMakeFiles/airplay.dir/crypto.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/crypto.c.o -c /home/julian/UxPlay/lib/crypto.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/crypto.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/crypto.c > CMakeFiles/airplay.dir/crypto.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/crypto.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/crypto.c -o CMakeFiles/airplay.dir/crypto.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/crypto.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o.provides: lib/CMakeFiles/airplay.dir/crypto.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/crypto.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/crypto.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o.provides.build: lib/CMakeFiles/airplay.dir/crypto.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/dnssd.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object lib/CMakeFiles/airplay.dir/dnssd.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/dnssd.c.o -c /home/julian/UxPlay/lib/dnssd.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/dnssd.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/dnssd.c > CMakeFiles/airplay.dir/dnssd.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/dnssd.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/dnssd.c -o CMakeFiles/airplay.dir/dnssd.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/dnssd.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o.provides: lib/CMakeFiles/airplay.dir/dnssd.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/dnssd.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/dnssd.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o.provides.build: lib/CMakeFiles/airplay.dir/dnssd.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o: ../lib/fairplay_playfair.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/fairplay_playfair.c.o -c /home/julian/UxPlay/lib/fairplay_playfair.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/fairplay_playfair.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/fairplay_playfair.c > CMakeFiles/airplay.dir/fairplay_playfair.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/fairplay_playfair.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/fairplay_playfair.c -o CMakeFiles/airplay.dir/fairplay_playfair.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.provides: lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.provides.build: lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o: ../lib/http_parser.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object lib/CMakeFiles/airplay.dir/http_parser.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/http_parser.c.o -c /home/julian/UxPlay/lib/http_parser.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/http_parser.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/http_parser.c > CMakeFiles/airplay.dir/http_parser.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/http_parser.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/http_parser.c -o CMakeFiles/airplay.dir/http_parser.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/http_parser.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o.provides: lib/CMakeFiles/airplay.dir/http_parser.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_parser.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/http_parser.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o.provides.build: lib/CMakeFiles/airplay.dir/http_parser.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o: ../lib/http_request.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object lib/CMakeFiles/airplay.dir/http_request.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/http_request.c.o -c /home/julian/UxPlay/lib/http_request.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/http_request.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/http_request.c > CMakeFiles/airplay.dir/http_request.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/http_request.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/http_request.c -o CMakeFiles/airplay.dir/http_request.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/http_request.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o.provides: lib/CMakeFiles/airplay.dir/http_request.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_request.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/http_request.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o.provides.build: lib/CMakeFiles/airplay.dir/http_request.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/http_response.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object lib/CMakeFiles/airplay.dir/http_response.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/http_response.c.o -c /home/julian/UxPlay/lib/http_response.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/http_response.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/http_response.c > CMakeFiles/airplay.dir/http_response.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/http_response.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/http_response.c -o CMakeFiles/airplay.dir/http_response.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/http_response.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o.provides: lib/CMakeFiles/airplay.dir/http_response.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_response.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/http_response.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o.provides.build: lib/CMakeFiles/airplay.dir/http_response.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/httpd.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object lib/CMakeFiles/airplay.dir/httpd.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/httpd.c.o -c /home/julian/UxPlay/lib/httpd.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/httpd.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/httpd.c > CMakeFiles/airplay.dir/httpd.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/httpd.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/httpd.c -o CMakeFiles/airplay.dir/httpd.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/httpd.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o.provides: lib/CMakeFiles/airplay.dir/httpd.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/httpd.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/httpd.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o.provides.build: lib/CMakeFiles/airplay.dir/httpd.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/logger.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object lib/CMakeFiles/airplay.dir/logger.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/logger.c.o -c /home/julian/UxPlay/lib/logger.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/logger.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/logger.c > CMakeFiles/airplay.dir/logger.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/logger.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/logger.c -o CMakeFiles/airplay.dir/logger.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/logger.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o.provides: lib/CMakeFiles/airplay.dir/logger.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/logger.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/logger.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o.provides.build: lib/CMakeFiles/airplay.dir/logger.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/mirror_buffer.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object lib/CMakeFiles/airplay.dir/mirror_buffer.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/mirror_buffer.c.o -c /home/julian/UxPlay/lib/mirror_buffer.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/mirror_buffer.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/mirror_buffer.c > CMakeFiles/airplay.dir/mirror_buffer.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/mirror_buffer.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/mirror_buffer.c -o CMakeFiles/airplay.dir/mirror_buffer.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.provides: lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.provides.build: lib/CMakeFiles/airplay.dir/mirror_buffer.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: ../lib/netutils.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object lib/CMakeFiles/airplay.dir/netutils.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/netutils.c.o -c /home/julian/UxPlay/lib/netutils.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/netutils.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/netutils.c > CMakeFiles/airplay.dir/netutils.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/netutils.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/netutils.c -o CMakeFiles/airplay.dir/netutils.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/netutils.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o.provides: lib/CMakeFiles/airplay.dir/netutils.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/netutils.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/netutils.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o.provides.build: lib/CMakeFiles/airplay.dir/netutils.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: ../lib/pairing.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object lib/CMakeFiles/airplay.dir/pairing.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/pairing.c.o -c /home/julian/UxPlay/lib/pairing.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/pairing.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/pairing.c > CMakeFiles/airplay.dir/pairing.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/pairing.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/pairing.c -o CMakeFiles/airplay.dir/pairing.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/pairing.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o.provides: lib/CMakeFiles/airplay.dir/pairing.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/pairing.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/pairing.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o.provides.build: lib/CMakeFiles/airplay.dir/pairing.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object lib/CMakeFiles/airplay.dir/raop.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/raop.c.o -c /home/julian/UxPlay/lib/raop.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/raop.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/raop.c > CMakeFiles/airplay.dir/raop.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/raop.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/raop.c -o CMakeFiles/airplay.dir/raop.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o.provides: lib/CMakeFiles/airplay.dir/raop.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o.provides.build: lib/CMakeFiles/airplay.dir/raop.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/raop_buffer.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object lib/CMakeFiles/airplay.dir/raop_buffer.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/raop_buffer.c.o -c /home/julian/UxPlay/lib/raop_buffer.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/raop_buffer.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/raop_buffer.c > CMakeFiles/airplay.dir/raop_buffer.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/raop_buffer.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/raop_buffer.c -o CMakeFiles/airplay.dir/raop_buffer.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_buffer.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o.provides: lib/CMakeFiles/airplay.dir/raop_buffer.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_buffer.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_buffer.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o.provides.build: lib/CMakeFiles/airplay.dir/raop_buffer.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/raop_ntp.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object lib/CMakeFiles/airplay.dir/raop_ntp.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/raop_ntp.c.o -c /home/julian/UxPlay/lib/raop_ntp.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/raop_ntp.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/raop_ntp.c > CMakeFiles/airplay.dir/raop_ntp.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/raop_ntp.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/raop_ntp.c -o CMakeFiles/airplay.dir/raop_ntp.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_ntp.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o.provides: lib/CMakeFiles/airplay.dir/raop_ntp.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_ntp.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_ntp.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o.provides.build: lib/CMakeFiles/airplay.dir/raop_ntp.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/raop_rtp.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object lib/CMakeFiles/airplay.dir/raop_rtp.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/raop_rtp.c.o -c /home/julian/UxPlay/lib/raop_rtp.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/raop_rtp.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/raop_rtp.c > CMakeFiles/airplay.dir/raop_rtp.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/raop_rtp.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/raop_rtp.c -o CMakeFiles/airplay.dir/raop_rtp.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_rtp.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o.provides: lib/CMakeFiles/airplay.dir/raop_rtp.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_rtp.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o.provides.build: lib/CMakeFiles/airplay.dir/raop_rtp.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/raop_rtp_mirror.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/raop_rtp_mirror.c.o -c /home/julian/UxPlay/lib/raop_rtp_mirror.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/raop_rtp_mirror.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/raop_rtp_mirror.c > CMakeFiles/airplay.dir/raop_rtp_mirror.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/raop_rtp_mirror.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/raop_rtp_mirror.c -o CMakeFiles/airplay.dir/raop_rtp_mirror.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.provides: lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.provides.build: lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o
|
||||
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o: lib/CMakeFiles/airplay.dir/flags.make
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o: ../lib/utils.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object lib/CMakeFiles/airplay.dir/utils.c.o"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/airplay.dir/utils.c.o -c /home/julian/UxPlay/lib/utils.c
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/airplay.dir/utils.c.i"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/utils.c > CMakeFiles/airplay.dir/utils.c.i
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/airplay.dir/utils.c.s"
|
||||
cd /home/julian/UxPlay/build/lib && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/utils.c -o CMakeFiles/airplay.dir/utils.c.s
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o.requires:
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/utils.c.o.requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o.provides: lib/CMakeFiles/airplay.dir/utils.c.o.requires
|
||||
$(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/utils.c.o.provides.build
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/utils.c.o.provides
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o.provides.build: lib/CMakeFiles/airplay.dir/utils.c.o
|
||||
|
||||
|
||||
# Object files for target airplay
|
||||
airplay_OBJECTS = \
|
||||
"CMakeFiles/airplay.dir/byteutils.c.o" \
|
||||
"CMakeFiles/airplay.dir/crypto.c.o" \
|
||||
"CMakeFiles/airplay.dir/dnssd.c.o" \
|
||||
"CMakeFiles/airplay.dir/fairplay_playfair.c.o" \
|
||||
"CMakeFiles/airplay.dir/http_parser.c.o" \
|
||||
"CMakeFiles/airplay.dir/http_request.c.o" \
|
||||
"CMakeFiles/airplay.dir/http_response.c.o" \
|
||||
"CMakeFiles/airplay.dir/httpd.c.o" \
|
||||
"CMakeFiles/airplay.dir/logger.c.o" \
|
||||
"CMakeFiles/airplay.dir/mirror_buffer.c.o" \
|
||||
"CMakeFiles/airplay.dir/netutils.c.o" \
|
||||
"CMakeFiles/airplay.dir/pairing.c.o" \
|
||||
"CMakeFiles/airplay.dir/raop.c.o" \
|
||||
"CMakeFiles/airplay.dir/raop_buffer.c.o" \
|
||||
"CMakeFiles/airplay.dir/raop_ntp.c.o" \
|
||||
"CMakeFiles/airplay.dir/raop_rtp.c.o" \
|
||||
"CMakeFiles/airplay.dir/raop_rtp_mirror.c.o" \
|
||||
"CMakeFiles/airplay.dir/utils.c.o"
|
||||
|
||||
# External object files for target airplay
|
||||
airplay_EXTERNAL_OBJECTS =
|
||||
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/byteutils.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/crypto.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/dnssd.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/http_parser.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/http_request.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/http_response.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/httpd.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/logger.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/mirror_buffer.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/netutils.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/pairing.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/raop.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/raop_buffer.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/raop_ntp.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/raop_rtp.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/utils.c.o
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/build.make
|
||||
lib/libairplay.a: lib/CMakeFiles/airplay.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Linking C static library libairplay.a"
|
||||
cd /home/julian/UxPlay/build/lib && $(CMAKE_COMMAND) -P CMakeFiles/airplay.dir/cmake_clean_target.cmake
|
||||
cd /home/julian/UxPlay/build/lib && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/airplay.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
lib/CMakeFiles/airplay.dir/build: lib/libairplay.a
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/build
|
||||
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/byteutils.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/crypto.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/dnssd.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/http_parser.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/http_request.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/http_response.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/httpd.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/logger.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/mirror_buffer.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/netutils.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/pairing.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/raop.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/raop_buffer.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/raop_ntp.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/raop_rtp.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o.requires
|
||||
lib/CMakeFiles/airplay.dir/requires: lib/CMakeFiles/airplay.dir/utils.c.o.requires
|
||||
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/requires
|
||||
|
||||
lib/CMakeFiles/airplay.dir/clean:
|
||||
cd /home/julian/UxPlay/build/lib && $(CMAKE_COMMAND) -P CMakeFiles/airplay.dir/cmake_clean.cmake
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/clean
|
||||
|
||||
lib/CMakeFiles/airplay.dir/depend:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/julian/UxPlay /home/julian/UxPlay/lib /home/julian/UxPlay/build /home/julian/UxPlay/build/lib /home/julian/UxPlay/build/lib/CMakeFiles/airplay.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/depend
|
||||
|
||||
BIN
build/lib/CMakeFiles/airplay.dir/byteutils.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/byteutils.c.o
Normal file
Binary file not shown.
27
build/lib/CMakeFiles/airplay.dir/cmake_clean.cmake
Normal file
27
build/lib/CMakeFiles/airplay.dir/cmake_clean.cmake
Normal file
@@ -0,0 +1,27 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/airplay.dir/byteutils.c.o"
|
||||
"CMakeFiles/airplay.dir/crypto.c.o"
|
||||
"CMakeFiles/airplay.dir/dnssd.c.o"
|
||||
"CMakeFiles/airplay.dir/fairplay_playfair.c.o"
|
||||
"CMakeFiles/airplay.dir/http_parser.c.o"
|
||||
"CMakeFiles/airplay.dir/http_request.c.o"
|
||||
"CMakeFiles/airplay.dir/http_response.c.o"
|
||||
"CMakeFiles/airplay.dir/httpd.c.o"
|
||||
"CMakeFiles/airplay.dir/logger.c.o"
|
||||
"CMakeFiles/airplay.dir/mirror_buffer.c.o"
|
||||
"CMakeFiles/airplay.dir/netutils.c.o"
|
||||
"CMakeFiles/airplay.dir/pairing.c.o"
|
||||
"CMakeFiles/airplay.dir/raop.c.o"
|
||||
"CMakeFiles/airplay.dir/raop_buffer.c.o"
|
||||
"CMakeFiles/airplay.dir/raop_ntp.c.o"
|
||||
"CMakeFiles/airplay.dir/raop_rtp.c.o"
|
||||
"CMakeFiles/airplay.dir/raop_rtp_mirror.c.o"
|
||||
"CMakeFiles/airplay.dir/utils.c.o"
|
||||
"libairplay.pdb"
|
||||
"libairplay.a"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/airplay.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
@@ -0,0 +1,3 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libairplay.a"
|
||||
)
|
||||
BIN
build/lib/CMakeFiles/airplay.dir/crypto.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/crypto.c.o
Normal file
Binary file not shown.
163
build/lib/CMakeFiles/airplay.dir/depend.internal
Normal file
163
build/lib/CMakeFiles/airplay.dir/depend.internal
Normal file
@@ -0,0 +1,163 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o
|
||||
/home/julian/UxPlay/lib/byteutils.c
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o
|
||||
/home/julian/UxPlay/lib/crypto.c
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/dnssd.c
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/dnssdint.h
|
||||
/home/julian/UxPlay/lib/global.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
/home/julian/UxPlay/lib/utils.h
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o
|
||||
/home/julian/UxPlay/lib/fairplay.h
|
||||
/home/julian/UxPlay/lib/fairplay_playfair.c
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/playfair/playfair.h
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o
|
||||
/home/julian/UxPlay/lib/http_parser.c
|
||||
/home/julian/UxPlay/lib/http_parser.h
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o
|
||||
/home/julian/UxPlay/lib/http_parser.h
|
||||
/home/julian/UxPlay/lib/http_request.c
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/http_response.c
|
||||
/home/julian/UxPlay/lib/http_response.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
/home/julian/UxPlay/lib/http_response.h
|
||||
/home/julian/UxPlay/lib/httpd.c
|
||||
/home/julian/UxPlay/lib/httpd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/logger.c
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/mirror_buffer.c
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/netutils.c
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
/home/julian/UxPlay/lib/curve25519/curve25519.h
|
||||
/home/julian/UxPlay/lib/ed25519/ed25519.h
|
||||
/home/julian/UxPlay/lib/pairing.c
|
||||
/home/julian/UxPlay/lib/pairing.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/dnssdint.h
|
||||
/home/julian/UxPlay/lib/fairplay.h
|
||||
/home/julian/UxPlay/lib/global.h
|
||||
/home/julian/UxPlay/lib/http_request.h
|
||||
/home/julian/UxPlay/lib/http_response.h
|
||||
/home/julian/UxPlay/lib/httpd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
/home/julian/UxPlay/lib/pairing.h
|
||||
/home/julian/UxPlay/lib/plist/plist/plist.h
|
||||
/home/julian/UxPlay/lib/raop.c
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop_handlers.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
/home/julian/UxPlay/lib/utils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/crypto.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop_buffer.c
|
||||
/home/julian/UxPlay/lib/raop_buffer.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.c
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop_buffer.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp.c
|
||||
/home/julian/UxPlay/lib/raop_rtp.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o
|
||||
/home/julian/UxPlay/lib/byteutils.h
|
||||
/home/julian/UxPlay/lib/compat.h
|
||||
/home/julian/UxPlay/lib/dnssd.h
|
||||
/home/julian/UxPlay/lib/logger.h
|
||||
/home/julian/UxPlay/lib/memalign.h
|
||||
/home/julian/UxPlay/lib/mirror_buffer.h
|
||||
/home/julian/UxPlay/lib/netutils.h
|
||||
/home/julian/UxPlay/lib/raop.h
|
||||
/home/julian/UxPlay/lib/raop_ntp.h
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.c
|
||||
/home/julian/UxPlay/lib/raop_rtp_mirror.h
|
||||
/home/julian/UxPlay/lib/sockets.h
|
||||
/home/julian/UxPlay/lib/stream.h
|
||||
/home/julian/UxPlay/lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o
|
||||
/home/julian/UxPlay/lib/utils.c
|
||||
163
build/lib/CMakeFiles/airplay.dir/depend.make
Normal file
163
build/lib/CMakeFiles/airplay.dir/depend.make
Normal file
@@ -0,0 +1,163 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o: ../lib/byteutils.c
|
||||
lib/CMakeFiles/airplay.dir/byteutils.c.o: ../lib/byteutils.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o: ../lib/crypto.c
|
||||
lib/CMakeFiles/airplay.dir/crypto.c.o: ../lib/crypto.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/dnssd.c
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/dnssd.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/dnssdint.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/global.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/dnssd.c.o: ../lib/utils.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o: ../lib/fairplay.h
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o: ../lib/fairplay_playfair.c
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o: ../lib/playfair/playfair.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o: ../lib/http_parser.c
|
||||
lib/CMakeFiles/airplay.dir/http_parser.c.o: ../lib/http_parser.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o: ../lib/http_parser.h
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o: ../lib/http_request.c
|
||||
lib/CMakeFiles/airplay.dir/http_request.c.o: ../lib/http_request.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/http_response.c
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/http_response.h
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/http_response.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/http_request.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/http_response.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/httpd.c
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/httpd.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/netutils.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/httpd.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/logger.c
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/logger.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/crypto.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/dnssd.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/mirror_buffer.c
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/mirror_buffer.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/raop.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/raop_ntp.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/raop_rtp.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/stream.h
|
||||
lib/CMakeFiles/airplay.dir/mirror_buffer.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: ../lib/netutils.c
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/netutils.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: ../lib/crypto.h
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: ../lib/curve25519/curve25519.h
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: ../lib/ed25519/ed25519.h
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: ../lib/pairing.c
|
||||
lib/CMakeFiles/airplay.dir/pairing.c.o: ../lib/pairing.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/dnssd.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/dnssdint.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/fairplay.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/global.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/http_request.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/http_response.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/httpd.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/netutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/pairing.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/plist/plist/plist.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop.c
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop_handlers.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop_ntp.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop_rtp.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/raop_rtp_mirror.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/stream.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/threads.h
|
||||
lib/CMakeFiles/airplay.dir/raop.c.o: ../lib/utils.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/crypto.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/dnssd.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/raop.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/raop_buffer.c
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/raop_buffer.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/raop_ntp.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/raop_rtp.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/stream.h
|
||||
lib/CMakeFiles/airplay.dir/raop_buffer.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/byteutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/netutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/raop_ntp.c
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/raop_ntp.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/raop_ntp.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/byteutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/dnssd.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/mirror_buffer.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/netutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/raop.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/raop_buffer.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/raop_ntp.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/raop_rtp.c
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/raop_rtp.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/stream.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/byteutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/compat.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/dnssd.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/logger.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/memalign.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/mirror_buffer.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/netutils.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/raop.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/raop_ntp.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/raop_rtp_mirror.c
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/raop_rtp_mirror.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/sockets.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/stream.h
|
||||
lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o: ../lib/threads.h
|
||||
|
||||
lib/CMakeFiles/airplay.dir/utils.c.o: ../lib/utils.c
|
||||
|
||||
BIN
build/lib/CMakeFiles/airplay.dir/dnssd.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/dnssd.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o
Normal file
Binary file not shown.
10
build/lib/CMakeFiles/airplay.dir/flags.make
Normal file
10
build/lib/CMakeFiles/airplay.dir/flags.make
Normal file
@@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_FLAGS = -Ofast -march=native -DSTANDALONE -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -DTARGET_POSIX -D_LINUX -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -U_FORTIFY_SOURCE -Wall -g
|
||||
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/home/julian/UxPlay/lib/curve25519 -I/home/julian/UxPlay/lib/ed25519 -I/home/julian/UxPlay/lib/playfair -I/home/julian/UxPlay/lib/plist/plist
|
||||
|
||||
BIN
build/lib/CMakeFiles/airplay.dir/http_parser.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/http_parser.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/http_request.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/http_request.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/http_response.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/http_response.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/httpd.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/httpd.c.o
Normal file
Binary file not shown.
2
build/lib/CMakeFiles/airplay.dir/link.txt
Normal file
2
build/lib/CMakeFiles/airplay.dir/link.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
/usr/bin/ar qc libairplay.a CMakeFiles/airplay.dir/byteutils.c.o CMakeFiles/airplay.dir/crypto.c.o CMakeFiles/airplay.dir/dnssd.c.o CMakeFiles/airplay.dir/fairplay_playfair.c.o CMakeFiles/airplay.dir/http_parser.c.o CMakeFiles/airplay.dir/http_request.c.o CMakeFiles/airplay.dir/http_response.c.o CMakeFiles/airplay.dir/httpd.c.o CMakeFiles/airplay.dir/logger.c.o CMakeFiles/airplay.dir/mirror_buffer.c.o CMakeFiles/airplay.dir/netutils.c.o CMakeFiles/airplay.dir/pairing.c.o CMakeFiles/airplay.dir/raop.c.o CMakeFiles/airplay.dir/raop_buffer.c.o CMakeFiles/airplay.dir/raop_ntp.c.o CMakeFiles/airplay.dir/raop_rtp.c.o CMakeFiles/airplay.dir/raop_rtp_mirror.c.o CMakeFiles/airplay.dir/utils.c.o
|
||||
/usr/bin/ranlib libairplay.a
|
||||
BIN
build/lib/CMakeFiles/airplay.dir/logger.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/logger.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/mirror_buffer.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/mirror_buffer.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/netutils.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/netutils.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/pairing.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/pairing.c.o
Normal file
Binary file not shown.
20
build/lib/CMakeFiles/airplay.dir/progress.make
Normal file
20
build/lib/CMakeFiles/airplay.dir/progress.make
Normal file
@@ -0,0 +1,20 @@
|
||||
CMAKE_PROGRESS_1 = 3
|
||||
CMAKE_PROGRESS_2 = 4
|
||||
CMAKE_PROGRESS_3 = 5
|
||||
CMAKE_PROGRESS_4 = 6
|
||||
CMAKE_PROGRESS_5 = 7
|
||||
CMAKE_PROGRESS_6 = 8
|
||||
CMAKE_PROGRESS_7 = 9
|
||||
CMAKE_PROGRESS_8 = 10
|
||||
CMAKE_PROGRESS_9 = 11
|
||||
CMAKE_PROGRESS_10 = 12
|
||||
CMAKE_PROGRESS_11 = 13
|
||||
CMAKE_PROGRESS_12 = 14
|
||||
CMAKE_PROGRESS_13 = 15
|
||||
CMAKE_PROGRESS_14 = 16
|
||||
CMAKE_PROGRESS_15 = 17
|
||||
CMAKE_PROGRESS_16 = 18
|
||||
CMAKE_PROGRESS_17 = 19
|
||||
CMAKE_PROGRESS_18 = 20
|
||||
CMAKE_PROGRESS_19 = 21
|
||||
|
||||
BIN
build/lib/CMakeFiles/airplay.dir/raop.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/raop.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/raop_buffer.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/raop_buffer.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/raop_ntp.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/raop_ntp.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/raop_rtp.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/raop_rtp.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o
Normal file
Binary file not shown.
BIN
build/lib/CMakeFiles/airplay.dir/utils.c.o
Normal file
BIN
build/lib/CMakeFiles/airplay.dir/utils.c.o
Normal file
Binary file not shown.
1
build/lib/CMakeFiles/progress.marks
Normal file
1
build/lib/CMakeFiles/progress.marks
Normal file
@@ -0,0 +1 @@
|
||||
51
|
||||
740
build/lib/Makefile
Normal file
740
build/lib/Makefile
Normal file
@@ -0,0 +1,740 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles /home/julian/UxPlay/build/lib/CMakeFiles/progress.marks
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
lib/CMakeFiles/airplay.dir/rule:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/CMakeFiles/airplay.dir/rule
|
||||
.PHONY : lib/CMakeFiles/airplay.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
airplay: lib/CMakeFiles/airplay.dir/rule
|
||||
|
||||
.PHONY : airplay
|
||||
|
||||
# fast build rule for target.
|
||||
airplay/fast:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/build
|
||||
.PHONY : airplay/fast
|
||||
|
||||
byteutils.o: byteutils.c.o
|
||||
|
||||
.PHONY : byteutils.o
|
||||
|
||||
# target to build an object file
|
||||
byteutils.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/byteutils.c.o
|
||||
.PHONY : byteutils.c.o
|
||||
|
||||
byteutils.i: byteutils.c.i
|
||||
|
||||
.PHONY : byteutils.i
|
||||
|
||||
# target to preprocess a source file
|
||||
byteutils.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/byteutils.c.i
|
||||
.PHONY : byteutils.c.i
|
||||
|
||||
byteutils.s: byteutils.c.s
|
||||
|
||||
.PHONY : byteutils.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
byteutils.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/byteutils.c.s
|
||||
.PHONY : byteutils.c.s
|
||||
|
||||
crypto.o: crypto.c.o
|
||||
|
||||
.PHONY : crypto.o
|
||||
|
||||
# target to build an object file
|
||||
crypto.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/crypto.c.o
|
||||
.PHONY : crypto.c.o
|
||||
|
||||
crypto.i: crypto.c.i
|
||||
|
||||
.PHONY : crypto.i
|
||||
|
||||
# target to preprocess a source file
|
||||
crypto.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/crypto.c.i
|
||||
.PHONY : crypto.c.i
|
||||
|
||||
crypto.s: crypto.c.s
|
||||
|
||||
.PHONY : crypto.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
crypto.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/crypto.c.s
|
||||
.PHONY : crypto.c.s
|
||||
|
||||
dnssd.o: dnssd.c.o
|
||||
|
||||
.PHONY : dnssd.o
|
||||
|
||||
# target to build an object file
|
||||
dnssd.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/dnssd.c.o
|
||||
.PHONY : dnssd.c.o
|
||||
|
||||
dnssd.i: dnssd.c.i
|
||||
|
||||
.PHONY : dnssd.i
|
||||
|
||||
# target to preprocess a source file
|
||||
dnssd.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/dnssd.c.i
|
||||
.PHONY : dnssd.c.i
|
||||
|
||||
dnssd.s: dnssd.c.s
|
||||
|
||||
.PHONY : dnssd.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
dnssd.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/dnssd.c.s
|
||||
.PHONY : dnssd.c.s
|
||||
|
||||
fairplay_playfair.o: fairplay_playfair.c.o
|
||||
|
||||
.PHONY : fairplay_playfair.o
|
||||
|
||||
# target to build an object file
|
||||
fairplay_playfair.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/fairplay_playfair.c.o
|
||||
.PHONY : fairplay_playfair.c.o
|
||||
|
||||
fairplay_playfair.i: fairplay_playfair.c.i
|
||||
|
||||
.PHONY : fairplay_playfair.i
|
||||
|
||||
# target to preprocess a source file
|
||||
fairplay_playfair.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/fairplay_playfair.c.i
|
||||
.PHONY : fairplay_playfair.c.i
|
||||
|
||||
fairplay_playfair.s: fairplay_playfair.c.s
|
||||
|
||||
.PHONY : fairplay_playfair.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
fairplay_playfair.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/fairplay_playfair.c.s
|
||||
.PHONY : fairplay_playfair.c.s
|
||||
|
||||
http_parser.o: http_parser.c.o
|
||||
|
||||
.PHONY : http_parser.o
|
||||
|
||||
# target to build an object file
|
||||
http_parser.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_parser.c.o
|
||||
.PHONY : http_parser.c.o
|
||||
|
||||
http_parser.i: http_parser.c.i
|
||||
|
||||
.PHONY : http_parser.i
|
||||
|
||||
# target to preprocess a source file
|
||||
http_parser.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_parser.c.i
|
||||
.PHONY : http_parser.c.i
|
||||
|
||||
http_parser.s: http_parser.c.s
|
||||
|
||||
.PHONY : http_parser.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
http_parser.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_parser.c.s
|
||||
.PHONY : http_parser.c.s
|
||||
|
||||
http_request.o: http_request.c.o
|
||||
|
||||
.PHONY : http_request.o
|
||||
|
||||
# target to build an object file
|
||||
http_request.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_request.c.o
|
||||
.PHONY : http_request.c.o
|
||||
|
||||
http_request.i: http_request.c.i
|
||||
|
||||
.PHONY : http_request.i
|
||||
|
||||
# target to preprocess a source file
|
||||
http_request.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_request.c.i
|
||||
.PHONY : http_request.c.i
|
||||
|
||||
http_request.s: http_request.c.s
|
||||
|
||||
.PHONY : http_request.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
http_request.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_request.c.s
|
||||
.PHONY : http_request.c.s
|
||||
|
||||
http_response.o: http_response.c.o
|
||||
|
||||
.PHONY : http_response.o
|
||||
|
||||
# target to build an object file
|
||||
http_response.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_response.c.o
|
||||
.PHONY : http_response.c.o
|
||||
|
||||
http_response.i: http_response.c.i
|
||||
|
||||
.PHONY : http_response.i
|
||||
|
||||
# target to preprocess a source file
|
||||
http_response.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_response.c.i
|
||||
.PHONY : http_response.c.i
|
||||
|
||||
http_response.s: http_response.c.s
|
||||
|
||||
.PHONY : http_response.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
http_response.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/http_response.c.s
|
||||
.PHONY : http_response.c.s
|
||||
|
||||
httpd.o: httpd.c.o
|
||||
|
||||
.PHONY : httpd.o
|
||||
|
||||
# target to build an object file
|
||||
httpd.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/httpd.c.o
|
||||
.PHONY : httpd.c.o
|
||||
|
||||
httpd.i: httpd.c.i
|
||||
|
||||
.PHONY : httpd.i
|
||||
|
||||
# target to preprocess a source file
|
||||
httpd.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/httpd.c.i
|
||||
.PHONY : httpd.c.i
|
||||
|
||||
httpd.s: httpd.c.s
|
||||
|
||||
.PHONY : httpd.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
httpd.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/httpd.c.s
|
||||
.PHONY : httpd.c.s
|
||||
|
||||
logger.o: logger.c.o
|
||||
|
||||
.PHONY : logger.o
|
||||
|
||||
# target to build an object file
|
||||
logger.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/logger.c.o
|
||||
.PHONY : logger.c.o
|
||||
|
||||
logger.i: logger.c.i
|
||||
|
||||
.PHONY : logger.i
|
||||
|
||||
# target to preprocess a source file
|
||||
logger.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/logger.c.i
|
||||
.PHONY : logger.c.i
|
||||
|
||||
logger.s: logger.c.s
|
||||
|
||||
.PHONY : logger.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
logger.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/logger.c.s
|
||||
.PHONY : logger.c.s
|
||||
|
||||
mirror_buffer.o: mirror_buffer.c.o
|
||||
|
||||
.PHONY : mirror_buffer.o
|
||||
|
||||
# target to build an object file
|
||||
mirror_buffer.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/mirror_buffer.c.o
|
||||
.PHONY : mirror_buffer.c.o
|
||||
|
||||
mirror_buffer.i: mirror_buffer.c.i
|
||||
|
||||
.PHONY : mirror_buffer.i
|
||||
|
||||
# target to preprocess a source file
|
||||
mirror_buffer.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/mirror_buffer.c.i
|
||||
.PHONY : mirror_buffer.c.i
|
||||
|
||||
mirror_buffer.s: mirror_buffer.c.s
|
||||
|
||||
.PHONY : mirror_buffer.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
mirror_buffer.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/mirror_buffer.c.s
|
||||
.PHONY : mirror_buffer.c.s
|
||||
|
||||
netutils.o: netutils.c.o
|
||||
|
||||
.PHONY : netutils.o
|
||||
|
||||
# target to build an object file
|
||||
netutils.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/netutils.c.o
|
||||
.PHONY : netutils.c.o
|
||||
|
||||
netutils.i: netutils.c.i
|
||||
|
||||
.PHONY : netutils.i
|
||||
|
||||
# target to preprocess a source file
|
||||
netutils.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/netutils.c.i
|
||||
.PHONY : netutils.c.i
|
||||
|
||||
netutils.s: netutils.c.s
|
||||
|
||||
.PHONY : netutils.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
netutils.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/netutils.c.s
|
||||
.PHONY : netutils.c.s
|
||||
|
||||
pairing.o: pairing.c.o
|
||||
|
||||
.PHONY : pairing.o
|
||||
|
||||
# target to build an object file
|
||||
pairing.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/pairing.c.o
|
||||
.PHONY : pairing.c.o
|
||||
|
||||
pairing.i: pairing.c.i
|
||||
|
||||
.PHONY : pairing.i
|
||||
|
||||
# target to preprocess a source file
|
||||
pairing.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/pairing.c.i
|
||||
.PHONY : pairing.c.i
|
||||
|
||||
pairing.s: pairing.c.s
|
||||
|
||||
.PHONY : pairing.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
pairing.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/pairing.c.s
|
||||
.PHONY : pairing.c.s
|
||||
|
||||
raop.o: raop.c.o
|
||||
|
||||
.PHONY : raop.o
|
||||
|
||||
# target to build an object file
|
||||
raop.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop.c.o
|
||||
.PHONY : raop.c.o
|
||||
|
||||
raop.i: raop.c.i
|
||||
|
||||
.PHONY : raop.i
|
||||
|
||||
# target to preprocess a source file
|
||||
raop.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop.c.i
|
||||
.PHONY : raop.c.i
|
||||
|
||||
raop.s: raop.c.s
|
||||
|
||||
.PHONY : raop.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
raop.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop.c.s
|
||||
.PHONY : raop.c.s
|
||||
|
||||
raop_buffer.o: raop_buffer.c.o
|
||||
|
||||
.PHONY : raop_buffer.o
|
||||
|
||||
# target to build an object file
|
||||
raop_buffer.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_buffer.c.o
|
||||
.PHONY : raop_buffer.c.o
|
||||
|
||||
raop_buffer.i: raop_buffer.c.i
|
||||
|
||||
.PHONY : raop_buffer.i
|
||||
|
||||
# target to preprocess a source file
|
||||
raop_buffer.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_buffer.c.i
|
||||
.PHONY : raop_buffer.c.i
|
||||
|
||||
raop_buffer.s: raop_buffer.c.s
|
||||
|
||||
.PHONY : raop_buffer.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
raop_buffer.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_buffer.c.s
|
||||
.PHONY : raop_buffer.c.s
|
||||
|
||||
raop_ntp.o: raop_ntp.c.o
|
||||
|
||||
.PHONY : raop_ntp.o
|
||||
|
||||
# target to build an object file
|
||||
raop_ntp.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_ntp.c.o
|
||||
.PHONY : raop_ntp.c.o
|
||||
|
||||
raop_ntp.i: raop_ntp.c.i
|
||||
|
||||
.PHONY : raop_ntp.i
|
||||
|
||||
# target to preprocess a source file
|
||||
raop_ntp.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_ntp.c.i
|
||||
.PHONY : raop_ntp.c.i
|
||||
|
||||
raop_ntp.s: raop_ntp.c.s
|
||||
|
||||
.PHONY : raop_ntp.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
raop_ntp.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_ntp.c.s
|
||||
.PHONY : raop_ntp.c.s
|
||||
|
||||
raop_rtp.o: raop_rtp.c.o
|
||||
|
||||
.PHONY : raop_rtp.o
|
||||
|
||||
# target to build an object file
|
||||
raop_rtp.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp.c.o
|
||||
.PHONY : raop_rtp.c.o
|
||||
|
||||
raop_rtp.i: raop_rtp.c.i
|
||||
|
||||
.PHONY : raop_rtp.i
|
||||
|
||||
# target to preprocess a source file
|
||||
raop_rtp.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp.c.i
|
||||
.PHONY : raop_rtp.c.i
|
||||
|
||||
raop_rtp.s: raop_rtp.c.s
|
||||
|
||||
.PHONY : raop_rtp.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
raop_rtp.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp.c.s
|
||||
.PHONY : raop_rtp.c.s
|
||||
|
||||
raop_rtp_mirror.o: raop_rtp_mirror.c.o
|
||||
|
||||
.PHONY : raop_rtp_mirror.o
|
||||
|
||||
# target to build an object file
|
||||
raop_rtp_mirror.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.o
|
||||
.PHONY : raop_rtp_mirror.c.o
|
||||
|
||||
raop_rtp_mirror.i: raop_rtp_mirror.c.i
|
||||
|
||||
.PHONY : raop_rtp_mirror.i
|
||||
|
||||
# target to preprocess a source file
|
||||
raop_rtp_mirror.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.i
|
||||
.PHONY : raop_rtp_mirror.c.i
|
||||
|
||||
raop_rtp_mirror.s: raop_rtp_mirror.c.s
|
||||
|
||||
.PHONY : raop_rtp_mirror.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
raop_rtp_mirror.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/raop_rtp_mirror.c.s
|
||||
.PHONY : raop_rtp_mirror.c.s
|
||||
|
||||
utils.o: utils.c.o
|
||||
|
||||
.PHONY : utils.o
|
||||
|
||||
# target to build an object file
|
||||
utils.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/utils.c.o
|
||||
.PHONY : utils.c.o
|
||||
|
||||
utils.i: utils.c.i
|
||||
|
||||
.PHONY : utils.i
|
||||
|
||||
# target to preprocess a source file
|
||||
utils.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/utils.c.i
|
||||
.PHONY : utils.c.i
|
||||
|
||||
utils.s: utils.c.s
|
||||
|
||||
.PHONY : utils.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
utils.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/CMakeFiles/airplay.dir/build.make lib/CMakeFiles/airplay.dir/utils.c.s
|
||||
.PHONY : utils.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... install/strip"
|
||||
@echo "... edit_cache"
|
||||
@echo "... airplay"
|
||||
@echo "... list_install_components"
|
||||
@echo "... install/local"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... install"
|
||||
@echo "... byteutils.o"
|
||||
@echo "... byteutils.i"
|
||||
@echo "... byteutils.s"
|
||||
@echo "... crypto.o"
|
||||
@echo "... crypto.i"
|
||||
@echo "... crypto.s"
|
||||
@echo "... dnssd.o"
|
||||
@echo "... dnssd.i"
|
||||
@echo "... dnssd.s"
|
||||
@echo "... fairplay_playfair.o"
|
||||
@echo "... fairplay_playfair.i"
|
||||
@echo "... fairplay_playfair.s"
|
||||
@echo "... http_parser.o"
|
||||
@echo "... http_parser.i"
|
||||
@echo "... http_parser.s"
|
||||
@echo "... http_request.o"
|
||||
@echo "... http_request.i"
|
||||
@echo "... http_request.s"
|
||||
@echo "... http_response.o"
|
||||
@echo "... http_response.i"
|
||||
@echo "... http_response.s"
|
||||
@echo "... httpd.o"
|
||||
@echo "... httpd.i"
|
||||
@echo "... httpd.s"
|
||||
@echo "... logger.o"
|
||||
@echo "... logger.i"
|
||||
@echo "... logger.s"
|
||||
@echo "... mirror_buffer.o"
|
||||
@echo "... mirror_buffer.i"
|
||||
@echo "... mirror_buffer.s"
|
||||
@echo "... netutils.o"
|
||||
@echo "... netutils.i"
|
||||
@echo "... netutils.s"
|
||||
@echo "... pairing.o"
|
||||
@echo "... pairing.i"
|
||||
@echo "... pairing.s"
|
||||
@echo "... raop.o"
|
||||
@echo "... raop.i"
|
||||
@echo "... raop.s"
|
||||
@echo "... raop_buffer.o"
|
||||
@echo "... raop_buffer.i"
|
||||
@echo "... raop_buffer.s"
|
||||
@echo "... raop_ntp.o"
|
||||
@echo "... raop_ntp.i"
|
||||
@echo "... raop_ntp.s"
|
||||
@echo "... raop_rtp.o"
|
||||
@echo "... raop_rtp.i"
|
||||
@echo "... raop_rtp.s"
|
||||
@echo "... raop_rtp_mirror.o"
|
||||
@echo "... raop_rtp_mirror.i"
|
||||
@echo "... raop_rtp_mirror.s"
|
||||
@echo "... utils.o"
|
||||
@echo "... utils.i"
|
||||
@echo "... utils.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
39
build/lib/cmake_install.cmake
Normal file
39
build/lib/cmake_install.cmake
Normal file
@@ -0,0 +1,39 @@
|
||||
# Install script for directory: /home/julian/UxPlay/lib
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/julian/UxPlay")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/julian/UxPlay/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||
@@ -0,0 +1,14 @@
|
||||
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||
|
||||
#IncludeRegexScan: ^.*$
|
||||
|
||||
#IncludeRegexComplain: ^$
|
||||
|
||||
#IncludeRegexTransform:
|
||||
|
||||
/home/julian/UxPlay/lib/curve25519/curve25519-donna.c
|
||||
string.h
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
"C"
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
set(CMAKE_DEPENDS_CHECK_C
|
||||
"/home/julian/UxPlay/lib/curve25519/curve25519-donna.c" "/home/julian/UxPlay/build/lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o"
|
||||
)
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
|
||||
# The include file search paths:
|
||||
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
114
build/lib/curve25519/CMakeFiles/curve25519.dir/build.make
Normal file
114
build/lib/curve25519/CMakeFiles/curve25519.dir/build.make
Normal file
@@ -0,0 +1,114 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include lib/curve25519/CMakeFiles/curve25519.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include lib/curve25519/CMakeFiles/curve25519.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include lib/curve25519/CMakeFiles/curve25519.dir/flags.make
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o: lib/curve25519/CMakeFiles/curve25519.dir/flags.make
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o: ../lib/curve25519/curve25519-donna.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o"
|
||||
cd /home/julian/UxPlay/build/lib/curve25519 && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/curve25519.dir/curve25519-donna.c.o -c /home/julian/UxPlay/lib/curve25519/curve25519-donna.c
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/curve25519.dir/curve25519-donna.c.i"
|
||||
cd /home/julian/UxPlay/build/lib/curve25519 && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/julian/UxPlay/lib/curve25519/curve25519-donna.c > CMakeFiles/curve25519.dir/curve25519-donna.c.i
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/curve25519.dir/curve25519-donna.c.s"
|
||||
cd /home/julian/UxPlay/build/lib/curve25519 && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/julian/UxPlay/lib/curve25519/curve25519-donna.c -o CMakeFiles/curve25519.dir/curve25519-donna.c.s
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.requires:
|
||||
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.requires
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.provides: lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.requires
|
||||
$(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.provides.build
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.provides
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.provides.build: lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o
|
||||
|
||||
|
||||
# Object files for target curve25519
|
||||
curve25519_OBJECTS = \
|
||||
"CMakeFiles/curve25519.dir/curve25519-donna.c.o"
|
||||
|
||||
# External object files for target curve25519
|
||||
curve25519_EXTERNAL_OBJECTS =
|
||||
|
||||
lib/curve25519/libcurve25519.a: lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o
|
||||
lib/curve25519/libcurve25519.a: lib/curve25519/CMakeFiles/curve25519.dir/build.make
|
||||
lib/curve25519/libcurve25519.a: lib/curve25519/CMakeFiles/curve25519.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/julian/UxPlay/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libcurve25519.a"
|
||||
cd /home/julian/UxPlay/build/lib/curve25519 && $(CMAKE_COMMAND) -P CMakeFiles/curve25519.dir/cmake_clean_target.cmake
|
||||
cd /home/julian/UxPlay/build/lib/curve25519 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/curve25519.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/build: lib/curve25519/libcurve25519.a
|
||||
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/build
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/requires: lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o.requires
|
||||
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/requires
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/clean:
|
||||
cd /home/julian/UxPlay/build/lib/curve25519 && $(CMAKE_COMMAND) -P CMakeFiles/curve25519.dir/cmake_clean.cmake
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/clean
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/depend:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/julian/UxPlay /home/julian/UxPlay/lib/curve25519 /home/julian/UxPlay/build /home/julian/UxPlay/build/lib/curve25519 /home/julian/UxPlay/build/lib/curve25519/CMakeFiles/curve25519.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/depend
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/curve25519.dir/curve25519-donna.c.o"
|
||||
"libcurve25519.pdb"
|
||||
"libcurve25519.a"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/curve25519.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
@@ -0,0 +1,3 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libcurve25519.a"
|
||||
)
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o
|
||||
/home/julian/UxPlay/lib/curve25519/curve25519-donna.c
|
||||
@@ -0,0 +1,5 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o: ../lib/curve25519/curve25519-donna.c
|
||||
|
||||
10
build/lib/curve25519/CMakeFiles/curve25519.dir/flags.make
Normal file
10
build/lib/curve25519/CMakeFiles/curve25519.dir/flags.make
Normal file
@@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_FLAGS =
|
||||
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES =
|
||||
|
||||
2
build/lib/curve25519/CMakeFiles/curve25519.dir/link.txt
Normal file
2
build/lib/curve25519/CMakeFiles/curve25519.dir/link.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
/usr/bin/ar qc libcurve25519.a CMakeFiles/curve25519.dir/curve25519-donna.c.o
|
||||
/usr/bin/ranlib libcurve25519.a
|
||||
@@ -0,0 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 22
|
||||
CMAKE_PROGRESS_2 = 23
|
||||
|
||||
1
build/lib/curve25519/CMakeFiles/progress.marks
Normal file
1
build/lib/curve25519/CMakeFiles/progress.marks
Normal file
@@ -0,0 +1 @@
|
||||
2
|
||||
230
build/lib/curve25519/Makefile
Normal file
230
build/lib/curve25519/Makefile
Normal file
@@ -0,0 +1,230 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/julian/UxPlay
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/julian/UxPlay/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles /home/julian/UxPlay/build/lib/curve25519/CMakeFiles/progress.marks
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/curve25519/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/julian/UxPlay/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/curve25519/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/curve25519/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/curve25519/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
lib/curve25519/CMakeFiles/curve25519.dir/rule:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f CMakeFiles/Makefile2 lib/curve25519/CMakeFiles/curve25519.dir/rule
|
||||
.PHONY : lib/curve25519/CMakeFiles/curve25519.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
curve25519: lib/curve25519/CMakeFiles/curve25519.dir/rule
|
||||
|
||||
.PHONY : curve25519
|
||||
|
||||
# fast build rule for target.
|
||||
curve25519/fast:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/build
|
||||
.PHONY : curve25519/fast
|
||||
|
||||
curve25519-donna.o: curve25519-donna.c.o
|
||||
|
||||
.PHONY : curve25519-donna.o
|
||||
|
||||
# target to build an object file
|
||||
curve25519-donna.c.o:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.o
|
||||
.PHONY : curve25519-donna.c.o
|
||||
|
||||
curve25519-donna.i: curve25519-donna.c.i
|
||||
|
||||
.PHONY : curve25519-donna.i
|
||||
|
||||
# target to preprocess a source file
|
||||
curve25519-donna.c.i:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.i
|
||||
.PHONY : curve25519-donna.c.i
|
||||
|
||||
curve25519-donna.s: curve25519-donna.c.s
|
||||
|
||||
.PHONY : curve25519-donna.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
curve25519-donna.c.s:
|
||||
cd /home/julian/UxPlay/build && $(MAKE) -f lib/curve25519/CMakeFiles/curve25519.dir/build.make lib/curve25519/CMakeFiles/curve25519.dir/curve25519-donna.c.s
|
||||
.PHONY : curve25519-donna.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... install/strip"
|
||||
@echo "... edit_cache"
|
||||
@echo "... curve25519"
|
||||
@echo "... list_install_components"
|
||||
@echo "... install/local"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... install"
|
||||
@echo "... curve25519-donna.o"
|
||||
@echo "... curve25519-donna.i"
|
||||
@echo "... curve25519-donna.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/julian/UxPlay/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
39
build/lib/curve25519/cmake_install.cmake
Normal file
39
build/lib/curve25519/cmake_install.cmake
Normal file
@@ -0,0 +1,39 @@
|
||||
# Install script for directory: /home/julian/UxPlay/lib/curve25519
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user