lokinet/llarp
Jason Rhinelander c5faa86926 cmake refactor
Refactors many things in cmake to improve and simplify:

- don't use variable indirection for target names; target names are
*already* a variable of sorts.  (e.g. ${UTIL_LIB} is now just
lokinet-util).  cmake/basic_definitions.cmake is now gone.

- fix LTO enabling to use the standard cmake (3.9+) LTO mechanism rather
than shoving a bunch of flag hacks through link_libraries and
add_compile_options.  This also now enables LTO when building a shared
library (because previously the -flto hacks were only turned on in the
static code for some reason).

- build liblokinet as *either* shared library or static library, but not
both.  Building both makes things more complicated because they had
different names (lokinet-shared or lokinet-static) and seems pointless:
you generally want one or the other.  Now there is just the liblokinet
target, which will be shared or static depending on the value of
BUILD_SHARED_LIBS.

- Simplify lokinet-cryptography AVX2 code: just build *one* library, and
add in the additional AVX2 files when possible, rather than building two
and needing to merge them.

- Compress STATIC_LINK and STATIC_LINK_RUNTIME into just STATIC_LINK.
It makes no sense to use one of these (_RUNTIME) on Windows and the
other on non-Windows when they appear to try to do the same thing.

- remove a bunch of annotations from `endif(FOO)` -> `endif()`.

- move all the tuntap compilation code (including OS-specific source
file selection) into vendor/CMakeLists.txt and build tuntap as an
intermediate OBJECT library rather than keeping a global variable in 5
different files.

- move release motto define to root cmake; it made no sense being
duplicated in both unix.cmake and win32.cmake

- fix add_log_tag to not stomp on any existing source compile flags with
its definition.  Also use proper compile definition property instead of
cramming it into compile flags.

- make optimization/linker flags less hacky.  There's no reason for us
to force particular optimization flags because the cmake build type
already does that (e.g. -DCMAKE_BUILD_TYPE=Release does -O3).  Not doing
that also silences a bunch of cmake warnings because it thinks "-O0 -g3"
etc.  are link libraries (which is reasonable: that's what the code was
telling cmake they are).

- sets the default build type to RelWithDebInfo which gives us `-O2 -g`
if you don't specify a build type.

- Move PIC up (so that the things loaded in unix.cmake, notably libuv,
have it set).

- Add a custom `curl` interface library that carries the correct link
target and include paths for curl (system or bundled).
2020-05-17 23:31:23 -03:00
..
android The Great Wall of Blame 2020-04-07 12:38:56 -06:00
config Silence various warnings 2020-05-17 21:28:17 -03:00
consensus The Great Wall of Blame 2020-04-07 12:38:56 -06:00
constants Remove DEBIAN option 2020-05-17 21:29:05 -03:00
crypto Remove crypto_noop 2020-05-17 17:08:11 -03:00
dht Silence various warnings 2020-05-17 21:28:17 -03:00
dns Refactor Addr -> IpAddress/SockAddr 2020-05-06 14:38:44 -06:00
ev use only 1 uv_async_t for event loop wakeups 2020-05-15 08:36:38 -04:00
exit Refactor ExitEndpoint's config, mv dns ops from [network] to [dns] 2020-05-04 11:05:51 -04:00
handlers Merge pull request #1262 from notlesh/bandaids-for-sockaddr-refactor-2020-05-11 2020-05-12 12:04:59 -04:00
hook The Great Wall of Blame 2020-04-07 12:38:56 -06:00
iwp make format 2020-05-15 09:07:28 -04:00
link Refactor Addr -> IpAddress/SockAddr 2020-05-06 14:38:44 -06:00
linux Removed RPI definition 2020-05-17 21:28:25 -03:00
messages Miss Match demands her name be removed from the code 2020-05-13 22:35:15 -03:00
net Removed RPI definition 2020-05-17 21:28:25 -03:00
path Refactor Addr -> IpAddress/SockAddr 2020-05-06 14:38:44 -06:00
router fix up unit tests, make them all pass 2020-05-15 08:38:04 -04:00
routing The Great Wall of Blame 2020-04-07 12:38:56 -06:00
rpc Silence various warnings 2020-05-17 21:28:17 -03:00
service Silence various warnings 2020-05-17 21:28:17 -03:00
simulation The Great Wall of Blame 2020-04-07 12:38:56 -06:00
tooling unbreak router hive 2020-05-06 10:45:30 -04:00
util Removed RPI definition 2020-05-17 21:28:25 -03:00
win32 remove a ton of ded win32 code 2020-04-20 19:05:53 -05:00
app.xml stray tag ;-; 2018-12-24 22:39:34 -06:00
bootstrap.cpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
bootstrap.hpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
CMakeLists.txt cmake refactor 2020-05-17 23:31:23 -03:00
context.cpp Remove crypto_noop 2020-05-17 17:08:11 -03:00
nodedb.cpp C++17 niceties 2020-05-12 16:42:35 -03:00
nodedb.hpp Opportunistically move 'netdb' to 'nodedb' 2020-04-07 14:29:47 -06:00
pow.cpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
pow.hpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
profiling.cpp C++17 niceties 2020-05-12 16:42:35 -03:00
profiling.hpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
router_contact.cpp make format 2020-05-15 09:07:28 -04:00
router_contact.hpp C++17 2020-05-01 17:43:27 -03:00
router_id.cpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
router_id.hpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
router_version.cpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
router_version.hpp The Great Wall of Blame 2020-04-07 12:38:56 -06:00
testnet.c prepare for 0.5.0 2019-08-29 07:45:58 -04:00