Files
4JLibs/Windows_Libs/Dev/CMakeLists.txt
T
alkandgsds 576f038dd0 bare bones cmake & tiny warnings (#1)
* add cmakelist

* fix 2 warnings

* rename libs

* add the multithreaded thing

* combine libpng into render lib

---------

Co-authored-by: gsds <51339266+Patoke@users.noreply.github.com>
2026-04-18 00:41:02 -04:00

11 lines
263 B
CMake

cmake_minimum_required(VERSION 3.25 FATAL_ERROR)
project(4JLibs.Windows LANGUAGES CXX)
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
add_subdirectory(Input)
add_subdirectory(Profile)
add_subdirectory(Render)
add_subdirectory(Storage)