mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
7 lines
198 B
CMake
7 lines
198 B
CMake
add_library(Base64 INTERFACE)
|
|
target_include_directories(Base64 INTERFACE .)
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.16 AND MSVC)
|
|
target_precompile_headers(Base64 INTERFACE <string>)
|
|
endif()
|