Mercurial > minori
view CMakeLists.txt @ 46:d0adc4aedfc8
*: update...
this commit:
1. consolidates dark theme stuff to dark_theme.cpp
2. creates a new widgets folder to store all of our
custom widgets
3. creates the list settings page in the information
dialog, although much of it is nonfunctional: it
doesn't save, and the status doesn't even get filled
in... we'll fix this later!
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 23 Sep 2023 01:02:15 -0400 |
parents | db445ce42057 |
children | d8eb763e6661 |
line wrap: on
line source
cmake_minimum_required(VERSION 3.16) project(minori LANGUAGES CXX) if(APPLE) enable_language(OBJCXX) endif() add_subdirectory(dep/anitomy) # Fix for mingw64 list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES ".dll.a" ".a") find_package(Qt5 COMPONENTS Widgets REQUIRED) find_package(CURL REQUIRED) set(LIBRARIES ${Qt5Widgets_LIBRARIES} ${CURL_LIBRARIES} anitomy ) # We need Cocoa for some OS X stuff if(APPLE) find_library(COCOA_LIBRARY Cocoa) list(APPEND LIBRARIES ${COCOA_LIBRARY}) endif() set(SRC_FILES # Main entrypoint src/main.cpp # Core files and datatype declarations... src/core/anime.cpp src/core/anime_db.cpp src/core/config.cpp src/core/date.cpp src/core/filesystem.cpp src/core/json.cpp src/core/strings.cpp src/core/time.cpp # Main window src/gui/window.cpp src/gui/dark_theme.cpp # Main window pages src/gui/pages/anime_list.cpp src/gui/pages/now_playing.cpp src/gui/pages/statistics.cpp # Custom widgets src/gui/widgets/sidebar.cpp src/gui/widgets/text.cpp # Dialogs src/gui/dialog/information.cpp src/gui/dialog/settings.cpp src/gui/dialog/settings/application.cpp src/gui/dialog/settings/services.cpp # Translate src/gui/translate/anime.cpp src/gui/translate/anilist.cpp # Services (only AniList for now) src/services/services.cpp src/services/anilist.cpp # Qt resources rc/icons.qrc dep/darkstyle/darkstyle.qrc ) if(APPLE) # Mac OS X (or OS X (or macOS)) list(APPEND SRC_FILES src/sys/osx/dark_theme.mm src/sys/osx/filesystem.mm ) elseif(WIN32) # Windows list(APPEND SRC_FILES src/sys/win32/dark_theme.cpp) endif() add_executable(minori ${SRC_FILES}) set_property(TARGET minori PROPERTY CXX_STANDARD 20) set_property(TARGET minori PROPERTY AUTOMOC ON) set_property(TARGET minori PROPERTY AUTORCC ON) target_include_directories(minori PUBLIC ${Qt5Widgets_INCLUDE_DIRS} ${CURL_INCLUDE_DIRS} PRIVATE include) target_compile_options(minori PRIVATE -Wall -Wextra -Wsuggest-override) if(APPLE) target_compile_definitions(minori PUBLIC MACOSX) elseif(WIN32) target_compile_definitions(minori PUBLIC WIN32) endif() target_link_libraries(minori ${LIBRARIES})