* [macOS] Adding QuickLook feature * [macOS] Adding QuickLook support for Conda and Homebrew. * [macOS] Support non-square app icons in thumbnails. * [macOS] adding icon for .FCScript files
24 lines
518 B
CMake
24 lines
518 B
CMake
add_subdirectory(Build)
|
|
add_subdirectory(3rdParty)
|
|
add_subdirectory(Base)
|
|
add_subdirectory(App)
|
|
add_subdirectory(Main)
|
|
add_subdirectory(Mod)
|
|
add_subdirectory(Ext)
|
|
add_subdirectory(Doc)
|
|
|
|
if(BUILD_GUI)
|
|
add_subdirectory(Gui)
|
|
if(UNIX AND NOT APPLE)
|
|
add_subdirectory(XDGData)
|
|
endif()
|
|
endif(BUILD_GUI)
|
|
|
|
if(BUILD_TEMPLATE)
|
|
add_subdirectory(Tools/_TEMPLATE_)
|
|
endif(BUILD_TEMPLATE)
|
|
|
|
# "if" clause moved into local CMakeLists.txt file to support Conda and Homebrew builds
|
|
add_subdirectory(MacAppBundle)
|
|
|