diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-07-07 01:04:32 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-07-12 23:00:07 +0200 |
commit | 4f85931c42ce4aad454a1dbf38a6f0565822056d (patch) | |
tree | 558b05e353d1b6984d6c9fd4fed80c6bc18fc56b /CMake/AddDependencies.cmake | |
parent | Funktions (diff) | |
download | cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.tar cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.tar.gz cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.tar.bz2 cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.tar.lz cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.tar.xz cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.tar.zst cuberite-4f85931c42ce4aad454a1dbf38a6f0565822056d.zip |
Diffstat (limited to '')
-rw-r--r-- | CMake/AddDependencies.cmake | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/CMake/AddDependencies.cmake b/CMake/AddDependencies.cmake index ecf18dd27..5173e4487 100644 --- a/CMake/AddDependencies.cmake +++ b/CMake/AddDependencies.cmake @@ -1,4 +1,4 @@ -function(build_dependencies TARGET) +function(build_dependencies) # Set options for SQLiteCpp, disable all their tests and lints: set(SQLITECPP_RUN_CPPLINT OFF CACHE BOOL "Run cpplint.py tool for Google C++ StyleGuide.") set(SQLITECPP_RUN_CPPCHECK OFF CACHE BOOL "Run cppcheck C++ static analysis tool.") @@ -40,6 +40,12 @@ function(build_dependencies TARGET) add_subdirectory("lib/${DEPENDENCY}" EXCLUDE_FROM_ALL) endforeach() + if (WIN32) + add_subdirectory(lib/luaproxy) + endif() +endfunction() + +function(link_dependencies TARGET) # Add required includes: target_include_directories( ${TARGET} SYSTEM PRIVATE @@ -76,8 +82,4 @@ function(build_dependencies TARGET) # Prettify jsoncpp_lib name in VS solution explorer: set_property(TARGET jsoncpp_lib PROPERTY PROJECT_LABEL "jsoncpp") - - if (WIN32) - add_subdirectory(lib/luaproxy) - endif() endfunction() |