mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
.. its dead (not updated for 5 years) .. it introduces dependency issues with openssl/crypto/icu on Linux distros .. we don't need it, since OAuthDialog does the heavy lifting we need (ok, its not pretty but it works). .. old code moved into the deprecated folder Fixes #2881
16 lines
352 B
Bash
Executable File
16 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
# This "script" creates a pkg-config file basing on values set
|
|
# in project file
|
|
|
|
echo "prefix=$1
|
|
exec_prefix=\${prefix}
|
|
libdir=\${prefix}/lib
|
|
includedir=\${prefix}/include/QtKOAuth
|
|
|
|
Name: KQOAuth
|
|
Description: Qt OAuth support library
|
|
Version: $2
|
|
Requires: QtCore QtNetwork
|
|
Libs: -L\${libdir} -lkqoauth
|
|
Cflags: -I\${includedir}" > kqoauth.pc
|