You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
423 B
CMake
12 lines
423 B
CMake
cmake_minimum_required(VERSION 3.4)
|
|
project(vita-toolchain LANGUAGES C)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules/")
|
|
set(TOOLCHAIN_DEPS_DIR "${CMAKE_SOURCE_DIR}/builds/deps_build" CACHE PATH "Prefix to search for dependencies in.")
|
|
list(APPEND CMAKE_PREFIX_PATH "${TOOLCHAIN_DEPS_DIR}")
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(psp2rela)
|
|
add_subdirectory(cmake_toolchain)
|
|
add_subdirectory(pkgconfig)
|