-
Notifications
You must be signed in to change notification settings - Fork 6
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 #33 from artiomn/master
SPDLog maked header-only
- Loading branch information
Showing
13 changed files
with
364 additions
and
358 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 |
---|---|---|
|
@@ -94,3 +94,7 @@ gmon.out | |
# QtCreator | ||
|
||
CMakeLists.txt.user | ||
|
||
# MSVS. | ||
|
||
/.vs |
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,3 @@ | ||
{ | ||
"CurrentProjectSetting": "Windows x64 Debug (windows-default)" | ||
} | ||
"CurrentProjectSetting": "Windows x64 Debug (windows-ninja)" | ||
} |
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 |
---|---|---|
|
@@ -219,10 +219,6 @@ include(print-variables) | |
# Build third-party. | ||
# | ||
|
||
if (MSVC) | ||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) | ||
endif() | ||
|
||
if (KNP_BUILD_AUTONOMOUS) | ||
if (NOT CPM_SOURCE_CACHE_DEFAULT) | ||
set(CPM_SOURCE_CACHE_DEFAULT "${CMAKE_CURRENT_SOURCE_DIR}/third-party") | ||
|
@@ -243,6 +239,15 @@ else() | |
set(ZMQ_ENABLE_PRECOMPS ON) | ||
endif() | ||
|
||
add_third_party("gh:gabime/[email protected]" | ||
OPTIONS | ||
"SPDLOG_BUILD_PIC ON" | ||
"SPDLOG_BUILD_SHARED OFF") | ||
|
||
if (MSVC) | ||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) | ||
endif() | ||
|
||
add_third_party(NAME "libzmq" | ||
GITHUB_REPOSITORY "zeromq/libzmq" | ||
VERSION "4.3.5" | ||
|
@@ -305,7 +310,7 @@ add_third_party("gh:p-ranav/[email protected]" | |
"CSV2_TEST OFF" | ||
"CSV2_SAMPLES OFF") | ||
|
||
if ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "^x86.*") | ||
if ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "(x86.*)|(X86.*)|(amd64)|(AMD64)") | ||
add_third_party("gh:intel/pcm" | ||
GIT_TAG 2f9b0c2 | ||
OPTIONS | ||
|
@@ -314,16 +319,11 @@ if ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "^x86.*") | |
include_directories("${CPM_PACKAGE_pcm_SOURCE_DIR}/src") | ||
endif() | ||
|
||
add_third_party("gh:gabime/[email protected]" | ||
OPTIONS | ||
"SPDLOG_BUILD_PIC ON" | ||
"SPDLOG_BUILD_SHARED OFF") | ||
|
||
add_third_party("gh:zeromq/[email protected]" | ||
OPTIONS | ||
"CPPZMQ_BUILD_TESTS OFF") | ||
|
||
add_third_party("gh:Tencent/rapidjson#7c73dd7" | ||
add_third_party("gh:Tencent/rapidjson#ebd87cb" | ||
OPTIONS | ||
"RAPIDJSON_BUILD_DOC OFF" | ||
"RAPIDJSON_BUILD_ASAN OFF" | ||
|
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
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.