Compare commits
29 Commits
master+seq
...
master
Author | SHA1 | Date |
---|---|---|
|
6b4c00cfea | 1 month ago |
|
b20512b190 | 2 months ago |
|
c699ca76b6 | 4 months ago |
|
838acc62dd | 4 months ago |
|
f44250dd61 | 4 months ago |
|
cca75dbdb3 | 6 months ago |
|
365ca8fc56 | 6 months ago |
|
a7145a0ad4 | 6 months ago |
|
36b0ded115 | 6 months ago |
|
0e48b56391 | 6 months ago |
|
c316aabc36 | 7 months ago |
|
581e58900b | 7 months ago |
|
7dcb9d8404 | 7 months ago |
|
5f46bd0795 | 7 months ago |
|
ef41d0ec3c | 7 months ago |
|
16b3db8320 | 7 months ago |
|
f0caac7dbb | 7 months ago |
|
b09ae2cc58 | 9 months ago |
|
24f7ae0d76 | 9 months ago |
|
a4554fa11a | 9 months ago |
|
f9de8160a2 | 9 months ago |
|
550420b4c4 | 9 months ago |
|
90a76c093c | 9 months ago |
|
150b69fef5 | 9 months ago |
|
87c7279291 | 9 months ago |
|
6616c9589e | 9 months ago |
|
c7be4b8f0f | 9 months ago |
|
b499ebba0c | 9 months ago |
|
d92a5d3116 | 9 months ago |
@ -0,0 +1,6 @@
|
||||
# 1st Party Dependencies
|
||||
## Prefer git tags instead of SHA hashes always
|
||||
|
||||
pEpEngine=v3.2.0-RC23
|
||||
libpEpAdapter= v3.2.0-RC3
|
||||
libpEpCxx=v3.2.0-RC0
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
jquery-3.6.1.js
|
@ -1,21 +1,41 @@
|
||||
# This is an Example build config file (local.conf)
|
||||
# you might not need this file, but if the defaults dont work for you
|
||||
# You can override them here.
|
||||
# Tweak the values to your needs and rename it to local.conf
|
||||
# The example values reflect the defaults.
|
||||
# Rename this file to local.conf and tweak the values to your needs,
|
||||
# if you need to override anything. (Most likely PREFIX)
|
||||
|
||||
######### C++ Compiler #########
|
||||
# Should work with clang and g++
|
||||
# CXX=g++
|
||||
# Toolchain
|
||||
# ---------
|
||||
# Should work with `g++` and `clang`
|
||||
# CXX=
|
||||
|
||||
# You might use /usr/bin/ar on MacOS explicitly if you have GNU ar installed via HomeBrew,
|
||||
# because it is installed in /usr/local/bin and therefore used by default.
|
||||
# AR=ar
|
||||
|
||||
# DIRS
|
||||
# ----
|
||||
# PREFIX=$(HOME)/local
|
||||
|
||||
# pEp Dependencies
|
||||
# PEP_INC_PATH=$(PREFIX)/include
|
||||
# PEP_LIB_PATH=$(PREFIX)/lib
|
||||
|
||||
# System Dependencies
|
||||
# SYS_INC_PATH=/usr/local/include
|
||||
# SYS_LIB_PATH=/usr/local/lib
|
||||
|
||||
# Additional Options
|
||||
# ------------------
|
||||
# DEBUG=1 # DEBUG Build (Default)
|
||||
# DEBUG=0 # RELEASE Build
|
||||
|
||||
############# DIRS #############
|
||||
# PREFIX=$(HOME)/local
|
||||
# Static/Dynamic Linkage
|
||||
# for a dynamically linked binary (for development) leave this empty.
|
||||
# If you are using clang, use "-static", but that will fail if you did not compile a static
|
||||
# version of libcrt0 and libc[++] yourself.
|
||||
# LDFLAGS+=
|
||||
|
||||
# where the other pEp-specific includes (e.g. pEpEngine, libpEpAdapter) are installed
|
||||
# PEP_INCLUDE=$(PREFIX)/include
|
||||
# Building BOOST yourself, the artefact names are not postfixed by default
|
||||
# E.g. lib is named "libboost_regex.a", not "libboost_regex-mt.a".
|
||||
# Set to empty string if this is the case for you.
|
||||
# BOOST_MT="-mt"
|
||||
|
Loading…
Reference in New Issue