Qt Utilities by ZgblKylin.
This project is designed to be integrate as a sub_directory.
Two CMake built-in options are used:
BUILD_SHARED_LIBS
:OFF
by default, enable to build shared libraries.BUILD_TESTING
:OFF
by default, enable to build tests.
Just add these codes into your CMakeLists.txt
add_subdirectory(KtUtils)
target_link_library(${PROJECT_NAME} PUBLIC KtUtils)
Then it'll export precompile header <KtUtils/global>
to your project. Feel free to use everything without manually include header files!