Mercurial > minori
view dep/animia/CMakeLists.txt @ 102:b315f3759c56
*: big patch
1. use a wrapper for mINI that enables case sensitivity
(personal preference)
2. rename dark_theme.cc to theme.cc and change it to be
a class
3. include the "dep" folder so we don't have stupidity in
json.h or ini.h
4. I think the graph was also tweaked a lot in this, nothing
is constexpr and size is found at runtime...
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Fri, 03 Nov 2023 21:32:52 -0400 |
| parents | eab9e623eb84 |
| children | 69db40272acd |
line wrap: on
line source
cmake_minimum_required(VERSION 3.9) project(animia) set(SRC_FILES src/main.cpp ) if(LINUX) list(APPEND SRC_FILES src/linux.cpp) elseif(UNIX) # this won't run on Linux list(APPEND SRC_FILES src/bsd.cpp) elseif(WIN32) list(APPEND SRC_FILES src/win32.cpp) endif() add_library(animia SHARED ${SRC_FILES}) set_target_properties(animia PROPERTIES PUBLIC_HEADER animia/animia.h CXX_STANDARD 11) target_include_directories(animia PRIVATE include) option(BUILD_TESTS "Build tests" OFF) if(BUILD_TESTS) project(test LANGUAGES CXX) add_executable(test test/main.cpp) target_include_directories(test PUBLIC include) target_link_libraries(test PUBLIC animia) set_target_properties(test PROPERTIES CXX_STANDARD 17) endif()
