* 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>
11 lines
263 B
CMake
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)
|