You've already forked n64-controller
16 lines
350 B
CMake
16 lines
350 B
CMake
cmake_minimum_required (VERSION 3.13.0)
|
|
|
|
if (NOT DEFINED CMAKE_BUILD_TYPE)
|
|
set (CMAKE_BUILD_TYPE "Release" CACHE STRING "" FORCE)
|
|
endif ()
|
|
|
|
project ("N64_Controller")
|
|
|
|
include (GNUInstallDirs)
|
|
|
|
add_subdirectory ("thirdparty/nodeeditor")
|
|
add_subdirectory ("thirdparty/Qt-Color-Widgets")
|
|
add_subdirectory ("n64c")
|
|
add_subdirectory ("application")
|
|
|