forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from absolute-community/v12.2.5PRBR4
v12.2.5 Release
- Loading branch information
Showing
470 changed files
with
18,149 additions
and
19,112 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
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 |
---|---|---|
|
@@ -128,3 +128,7 @@ absoluted | |
absolute-qt | ||
make | ||
/docker/bin | ||
|
||
# CLion | ||
.idea | ||
cmake-build-debug |
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,65 @@ | ||
# This CMakeLists.txt is not meant to actually work! | ||
# It only serves as a dummy project to make CLion work properly when it comes to symbol resolution and all the nice | ||
# features dependent on that. Building must still be done on the command line using the automake build chain | ||
# If you load this project in CLion and would like to run/debug executables, make sure to remove the "Build" entry from | ||
# the run/debug configuration as otherwise CLion will try to build this project with cmake, failing horribly. | ||
# You'll also have to manually change the executable in the configuration to the correct path of the already built executable | ||
|
||
cmake_minimum_required(VERSION 3.7) | ||
project(absolute) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
|
||
include_directories( | ||
src | ||
src/leveldb/include | ||
src/univalue/include | ||
) | ||
|
||
add_definitions( | ||
-DENABLE_WALLET=1 | ||
) | ||
|
||
file(GLOB SOURCE_FILES | ||
src/bench/*.cpp | ||
src/bench/*.h | ||
src/compat/*.cpp | ||
src/compat/*.h | ||
src/consensus/*.h | ||
src/consensus/*.cpp | ||
src/crypto/*.c | ||
src/crypto/*.h | ||
src/crypto/*.cpp | ||
src/leveldb/db/*.cc | ||
src/leveldb/db/*.h | ||
src/leveldb/include/*.h | ||
src/policy/*.cpp | ||
src/policy/*.h | ||
src/primitives/*.cpp | ||
src/primitives/*.h | ||
src/qt/test/*.cpp | ||
src/qt/test/*.h | ||
src/qt/*.cpp | ||
src/qt/*.h | ||
src/script/*.cpp | ||
src/script/*.h | ||
src/secp256k1/include/*.h | ||
src/test/*.cpp | ||
src/test/*.h | ||
src/univalue/include/*.h | ||
src/univalue/lib/*.cpp | ||
src/univalue/lib/*.h | ||
src/wallet/test/*.cpp | ||
src/wallet/*.cpp | ||
src/wallet/*.h | ||
src/zmq/*.cpp | ||
src/zmq/*.h | ||
src/*.cpp | ||
src/*.h | ||
src/evo/*.h | ||
src/evo/*.cpp | ||
src/rpc/*.cpp | ||
src/rpc/*.h | ||
) | ||
|
||
add_executable(absolute ${SOURCE_FILES}) |
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
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
Oops, something went wrong.