-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to make the project work with nix (#121)
* Convert expected vendor dependency to submodle and upgrade Submodule makes it easier to upgrade to the latest version. * Add install target to the makefile + pkgconfig add make install target. Also pc pkgconfig file.
- Loading branch information
Showing
9 changed files
with
31 additions
and
2,726 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "vendor/c-ares/c-ares"] | ||
path = vendor/c-ares/c-ares | ||
url = https://github.com/c-ares/c-ares.git | ||
[submodule "vendor/tartanllama/expected"] | ||
path = vendor/tartanllama/expected | ||
url = https://github.com/jstranik/expected.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#pragma once | ||
|
||
#include <expected/expected.hpp> | ||
#include <tl/expected.hpp> | ||
|
||
#include <array> | ||
#include <atomic> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#pragma once | ||
|
||
#include <expected/expected.hpp> | ||
#include <tl/expected.hpp> | ||
|
||
#include <atomic> | ||
#include <coroutine> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
prefix="@CMAKE_INSTALL_PREFIX@" | ||
libdir="${prefix}/lib" | ||
includedir="@CMAKE_INSTALL_INCLUDEDIR@" | ||
|
||
Name: @PROJECT_NAME@ | ||
Description: @CMAKE_PROJECT_DESCRIPTION@ | ||
Version: @PROJECT_VERSION@ | ||
Cflags: -I${includedir} | ||
Libs: -L${libdir} -l@target1@ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.