Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 388b229

Browse files
committedSep 20, 2016
Initial commit
0 parents  commit 388b229

File tree

361 files changed

+163056
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

361 files changed

+163056
-0
lines changed
 

‎.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CMakeCache.txt
2+
CMakeFiles
3+
CMakeScripts
4+
Makefile
5+
cmake_install.cmake
6+
install_manifest.txt
7+
CTestTestfile.cmake
8+
*.a
9+
build/
10+
.DS_Store
11+
.idea/

‎CMakeLists.txt

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
cmake_minimum_required(VERSION 3.5)
2+
project(ledger-core)
3+
4+
# The project version number.
5+
set(VERSION_MAJOR 0 CACHE STRING "Project major version number.")
6+
set(VERSION_MINOR 0 CACHE STRING "Project minor version number.")
7+
set(VERSION_PATCH 1 CACHE STRING "Project patch version number.")
8+
mark_as_advanced(VERSION_MAJOR VERSION_MINOR VERSION_PATCH)
9+
10+
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY build)
11+
list(APPEND INCLUDE_DIRECTORIES test/include/)
12+
13+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
14+
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
15+
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
16+
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
17+
18+
add_subdirectory(lib/bigd)
19+
20+
add_subdirectory(doc)
21+
add_subdirectory(src)
22+
add_subdirectory(test)
23+
24+
##################################
25+
# Just make the test runnable with
26+
# $ make test
27+
28+
enable_testing()

0 commit comments

Comments
 (0)