mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 14:25:05 +00:00
19506f1997
* Standalone builds no longer require you to have a compiled version of OBS Studio. Instead the project will now download the last compatible libOBS version from CI and use it for linking. * The project version now has a tweak field again, which is either 0 or determined by the number of git commits since the last release tag. * The Install command now properly uses CMAKE_INSTALL_PREFIX instead of INSTALL_DIR. * Packaging is now done using CPack instead of custom commands.
17 lines
644 B
CMake
17 lines
644 B
CMake
# Distributed under the OSI-approved MIT License. See accompanying
|
|
# file LICENSE or https://github.com/Crascit/DownloadProject for details.
|
|
|
|
cmake_minimum_required(VERSION 2.8.2)
|
|
|
|
project(${DL_ARGS_PROJ}-download NONE)
|
|
|
|
include(ExternalProject)
|
|
ExternalProject_Add(${DL_ARGS_PROJ}-download
|
|
${DL_ARGS_UNPARSED_ARGUMENTS}
|
|
SOURCE_DIR "${DL_ARGS_SOURCE_DIR}"
|
|
BINARY_DIR "${DL_ARGS_BINARY_DIR}"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
)
|