mirror of
https://github.com/ModOrganizer2/modorganizer.git
synced 2026-07-27 13:58:24 -07:00
16 lines
464 B
CMake
16 lines
464 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12)
|
|
|
|
ADD_COMPILE_OPTIONS($<$<CXX_COMPILER_ID:MSVC>:/MP>)
|
|
|
|
PROJECT(organizer)
|
|
|
|
# sets ModOrganizer as StartUp Project in Visual Studio
|
|
set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" PROPERTY VS_STARTUP_PROJECT "ModOrganizer")
|
|
|
|
SET(DEPENDENCIES_DIR CACHE PATH "")
|
|
# hint to find qt in dependencies path
|
|
LIST(APPEND CMAKE_PREFIX_PATH ${QT_ROOT}/lib/cmake)
|
|
LIST(APPEND CMAKE_PREFIX_PATH ${LZ4_ROOT}/dll)
|
|
|
|
ADD_SUBDIRECTORY(src)
|