LITWLogo

Lad in the Window Docs

Installation
🗕 🗗 🗙

Installing Lad In The Window (LITW)


From Source

Clone the repository and build the library using cmake:

git clone https://github.com/Ladsm/Lad-in-the-Window.git
cd Lad-in-the-Window
mkdir build && cd build
cmake ..
cmake --build .
cmake --install .

Using LITW in Your Projects

After installing, you can include LITW in your CMake projects by adding:

find_package(LITW REQUIRED)
target_link_libraries(your_target PRIVATE LITW::LITW)

Dependencies

LITW requires C++23 and Threads support. On Windows, system libraries like User32.lib are linked automatically.

[!] NOTES:

  • Make sure your compiler supports C++23.
  • On Linux/macOS, you may need to install pthreads development packages.
  • Using sudo for installation might be necessary to write to system folders.