mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-26 21:17:12 +00:00
5859fd464c
To be able to use ccache. Also fix compilation errors appeared due to absence of precompiled headers.
7 lines
186 B
CMake
7 lines
186 B
CMake
add_library(Base64 INTERFACE)
|
|
target_include_directories(Base64 INTERFACE .)
|
|
|
|
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
|
|
target_precompile_headers(Base64 INTERFACE <string>)
|
|
endif()
|