1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

Merge pull request #11 from thopiekar/cmake-patches

Downgrading required CMake VERSION to 3.0

This is related with #7. it's okay to downgrade (not specific version is needed) but cmake was not working anyway.
This commit is contained in:
Alberto Fanjul 2015-03-22 11:28:13 +01:00
commit 490e809483

View file

@ -1,6 +1,6 @@
project(Miraclecast) project(Miraclecast)
set(CMAKE_C_FLAGS "-std=c99") set(CMAKE_C_FLAGS "-std=c99")
cmake_minimum_required(VERSION 3.1) cmake_minimum_required(VERSION 3.0)
add_subdirectory(src) add_subdirectory(src)
add_subdirectory(res) add_subdirectory(res)