Crossplatform geographic Qt6 library.
- Qt6::Core
- Qt6::Widgets
mkdir build
cd build
cmake .. -DBUILD_SHARED_LIBS=ON
sudo cmake --build . -j 4 --config Release --target installnow you will be able to access library with CMake:
find_package(LatteLong)
target_link_libraries(YourProject LatteLong::LatteLong)OR you can pass installation and use library simply by adding this directory with cmake:
add_subdirectory(./LatteLong)
