From 6cce85b3a34a4a27d678abf0b4c005a38afd1738 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 17 Oct 2020 18:38:17 +0300 Subject: cmake: no more target_include_directories hacks --- server/common/CMakeLists.txt | 2 +- server/lexer/CMakeLists.txt | 2 ++ server/lexer/details/parse.cpp | 4 ++-- server/lexer/error.hpp | 2 +- server/lexer/lexer.cpp | 11 +++++------ server/lexer/token.cpp | 7 +++---- server/lexer/token_type.cpp | 5 ++--- server/main/CMakeLists.txt | 10 +++++----- server/main/server.cpp | 5 +++-- server/main/session.cpp | 7 ++++--- server/main/session_manager.cpp | 3 ++- server/parser/CMakeLists.txt | 2 +- server/parser/error.hpp | 2 +- server/parser/operator.hpp | 5 +++-- server/parser/parser.hpp | 3 ++- 15 files changed, 37 insertions(+), 33 deletions(-) (limited to 'server') diff --git a/server/common/CMakeLists.txt b/server/common/CMakeLists.txt index 284003f..f3d6605 100644 --- a/server/common/CMakeLists.txt +++ b/server/common/CMakeLists.txt @@ -1,5 +1,5 @@ add_library(common INTERFACE) -target_include_directories(common INTERFACE .) +target_include_directories(common INTERFACE ..) find_package(Boost REQUIRED) target_link_libraries(common INTERFACE Boost::boost) diff --git a/server/lexer/CMakeLists.txt b/server/lexer/CMakeLists.txt index 64375e8..fffb5a3 100644 --- a/server/lexer/CMakeLists.txt +++ b/server/lexer/CMakeLists.txt @@ -1,6 +1,8 @@ file(GLOB_RECURSE lexer_cpp "*.cpp") file(GLOB_RECURSE lexer_hpp "*.hpp") add_library(lexer ${lexer_cpp} ${lexer_hpp}) +target_include_directories(lexer PUBLIC ..) + target_link_libraries(lexer PUBLIC common) find_package(Boost REQUIRED COMPONENTS regex) diff --git a/server/lexer/details/parse.cpp b/server/lexer/details/parse.cpp index ccabb7e..3844225 100644 --- a/server/lexer/details/parse.cpp +++ b/server/lexer/details/parse.cpp @@ -3,8 +3,8 @@ // For details, see https://github.com/egor-tensin/math-server. // Distributed under the MIT License. -#include "../error.hpp" -#include "../token_type.hpp" +#include +#include #include diff --git a/server/lexer/error.hpp b/server/lexer/error.hpp index 72b3caa..994309a 100644 --- a/server/lexer/error.hpp +++ b/server/lexer/error.hpp @@ -5,7 +5,7 @@ #pragma once -#include "../common/error.hpp" +#include #include diff --git a/server/lexer/lexer.cpp b/server/lexer/lexer.cpp index 9b4e500..9d3c362 100644 --- a/server/lexer/lexer.cpp +++ b/server/lexer/lexer.cpp @@ -3,12 +3,11 @@ // For details, see https://github.com/egor-tensin/math-server. // Distributed under the MIT License. -#include "lexer.hpp" - -#include "details/parse.hpp" -#include "error.hpp" -#include "token.hpp" -#include "token_type.hpp" +#include +#include +#include +#include +#include #include #include diff --git a/server/lexer/token.cpp b/server/lexer/token.cpp index 5516bde..466012f 100644 --- a/server/lexer/token.cpp +++ b/server/lexer/token.cpp @@ -3,10 +3,9 @@ // For details, see https://github.com/egor-tensin/math-server. // Distributed under the MIT License. -#include "token.hpp" - -#include "error.hpp" -#include "token_type.hpp" +#include +#include +#include #include #include diff --git a/server/lexer/token_type.cpp b/server/lexer/token_type.cpp index 037a761..858e565 100644 --- a/server/lexer/token_type.cpp +++ b/server/lexer/token_type.cpp @@ -3,9 +3,8 @@ // For details, see https://github.com/egor-tensin/math-server. // Distributed under the MIT License. -#include "token_type.hpp" - -#include "error.hpp" +#include +#include #include #include diff --git a/server/main/CMakeLists.txt b/server/main/CMakeLists.txt index 39fe0b4..5457c7b 100644 --- a/server/main/CMakeLists.txt +++ b/server/main/CMakeLists.txt @@ -3,8 +3,12 @@ option(DEBUG_ASIO "enable debug output for Boost.Asio" OFF) file(GLOB server_cpp "*.cpp") file(GLOB server_hpp "*.hpp") add_executable(server ${server_cpp} ${server_hpp}) -target_link_libraries(server PRIVATE common parser) set_target_properties(server PROPERTIES OUTPUT_NAME math-server) +if(DEBUG_ASIO) + target_compile_definitions(server PRIVATE BOOST_ASIO_ENABLE_HANDLER_TRACKING) +endif() + +target_link_libraries(server PRIVATE common parser) set(CMAKE_THREAD_PREFER_PTHREAD ON) set(THREADS_PREFER_PTHREAD_FLAG ON) @@ -17,10 +21,6 @@ target_link_libraries(server PRIVATE Boost::filesystem Boost::program_options) -if(DEBUG_ASIO) - target_compile_definitions(server PRIVATE BOOST_ASIO_ENABLE_HANDLER_TRACKING) -endif() - install(TARGETS server RUNTIME DESTINATION bin) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") install(FILES "$" DESTINATION bin OPTIONAL) diff --git a/server/main/server.cpp b/server/main/server.cpp index 72034b1..a7ff294 100644 --- a/server/main/server.cpp +++ b/server/main/server.cpp @@ -5,12 +5,13 @@ #include "server.hpp" -#include "../common/error.hpp" -#include "../common/log.hpp" #include "session.hpp" #include "session_manager.hpp" #include "settings.hpp" +#include +#include + #include #include #include diff --git a/server/main/session.cpp b/server/main/session.cpp index 3917514..4725c38 100644 --- a/server/main/session.cpp +++ b/server/main/session.cpp @@ -5,11 +5,12 @@ #include "session.hpp" -#include "../common/error.hpp" -#include "../common/log.hpp" -#include "../parser/parser.hpp" #include "session_manager.hpp" +#include +#include +#include + #include #include #include diff --git a/server/main/session_manager.cpp b/server/main/session_manager.cpp index 753750d..89196b6 100644 --- a/server/main/session_manager.cpp +++ b/server/main/session_manager.cpp @@ -5,9 +5,10 @@ #include "session_manager.hpp" -#include "../common/log.hpp" #include "session.hpp" +#include + #include #include diff --git a/server/parser/CMakeLists.txt b/server/parser/CMakeLists.txt index 20d39a1..a426c6a 100644 --- a/server/parser/CMakeLists.txt +++ b/server/parser/CMakeLists.txt @@ -1,4 +1,4 @@ add_library(parser INTERFACE) -target_include_directories(parser INTERFACE .) +target_include_directories(parser INTERFACE ..) target_link_libraries(parser INTERFACE common lexer) diff --git a/server/parser/error.hpp b/server/parser/error.hpp index 6862a8f..6aea015 100644 --- a/server/parser/error.hpp +++ b/server/parser/error.hpp @@ -5,7 +5,7 @@ #pragma once -#include "../common/error.hpp" +#include #include diff --git a/server/parser/operator.hpp b/server/parser/operator.hpp index 9030c65..b29ae92 100644 --- a/server/parser/operator.hpp +++ b/server/parser/operator.hpp @@ -5,10 +5,11 @@ #pragma once -#include "../lexer/token.hpp" -#include "../lexer/token_type.hpp" #include "error.hpp" +#include +#include + #include namespace math::server::parser { diff --git a/server/parser/parser.hpp b/server/parser/parser.hpp index 844b36e..d9ec80d 100644 --- a/server/parser/parser.hpp +++ b/server/parser/parser.hpp @@ -5,10 +5,11 @@ #pragma once -#include "../lexer/lexer.hpp" #include "error.hpp" #include "operator.hpp" +#include + #include #include -- cgit v1.2.3