Mercurial > minori
view dep/animia/CMakeLists.txt @ 103:621084cc542c
resources: add icons
also remove ye olde qdarkstyle, as it's not even used anymore
there's more configuring to OS X bundles now as well, along with
more version info on Windows
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Fri, 03 Nov 2023 22:52:41 -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()
