Skip to content

Commit ce2fba1

Browse files
committedApr 23, 2023
Add Platform.hpp
1 parent ce70be6 commit ce2fba1

Some content is hidden

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

48 files changed

+153
-31
lines changed
 

‎CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ target_include_directories(mrdox-api
9292
PRIVATE
9393
"${PROJECT_SOURCE_DIR}/source/lib/"
9494
)
95+
target_compile_definitions(
96+
mrdox-api
97+
PRIVATE
98+
-DMRDOX_LIB
99+
)
95100

96101
# LLVM
97102
target_link_libraries(mrdox-api PUBLIC ${llvm_libs})
@@ -113,6 +118,7 @@ else()
113118
endif()
114119
target_include_directories(mrdox-api SYSTEM PUBLIC ${CLANG_INCLUDE_DIRS})
115120

121+
116122
# Windows, Win64
117123
if (WIN32)
118124
target_compile_definitions(

‎include/mrdox/Config.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#ifndef MRDOX_CONFIG_HPP
1313
#define MRDOX_CONFIG_HPP
1414

15+
#include <mrdox/Platform.hpp>
1516
#include <mrdox/Reporter.hpp>
1617
#include <clang/Tooling/ArgumentsAdjusters.h>
1718
#include <llvm/ADT/Optional.h>

0 commit comments

Comments
 (0)
Please sign in to comment.