Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
57f8b37a42 | |||
88fcd7702b |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
build
|
build
|
||||||
.vs
|
.vs
|
||||||
.cache
|
.cache
|
||||||
cmake-*
|
cmake-*
|
||||||
|
.DS_Store
|
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"files.autoSave": "onFocusChange",
|
"files.autoSave": "onFocusChange",
|
||||||
"editor.fontSize": 14,
|
//"editor.fontSize": 14,
|
||||||
"editor.fontFamily": "'FiraCode Nerd Font Mono', 'FiraCode Nerd Font Mono', 'FiraCode Nerd Font Mono'",
|
//"editor.fontFamily": "'FiraCode Nerd Font Mono', 'FiraCode Nerd Font Mono', 'FiraCode Nerd Font Mono'",
|
||||||
"cmake.configureOnOpen": true,
|
"cmake.configureOnOpen": true,
|
||||||
"cmake.debugConfig": {
|
"cmake.debugConfig": {
|
||||||
"console": "integratedTerminal",
|
"console": "integratedTerminal",
|
||||||
|
@ -22,6 +22,10 @@ set(SOURCES_FILE
|
|||||||
resource.h resource.cpp
|
resource.h resource.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# 默认可以从环境中获取boost
|
||||||
|
if (${CMAKE_VERSION} VERSION_GREATER "3.30")
|
||||||
|
cmake_policy(SET CMP0167 NEW)
|
||||||
|
endif()
|
||||||
set(Boost_USE_STATIC_LIBS OFF)
|
set(Boost_USE_STATIC_LIBS OFF)
|
||||||
find_package(Boost REQUIRED program_options filesystem)
|
find_package(Boost REQUIRED program_options filesystem)
|
||||||
include_directories(${Boost_INCLUDE_DIR})
|
include_directories(${Boost_INCLUDE_DIR})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user