mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
CMake: Finding files requires reference to srcdir
This commit is contained in:
parent
73374cb810
commit
5adcc7d12f
1 changed files with 3 additions and 3 deletions
|
@ -4,10 +4,10 @@ project(mirall)
|
|||
set(PACKAGE "mirall")
|
||||
set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
|
||||
|
||||
if ( EXISTS "OEM.cmake" )
|
||||
include ( OEM.cmake )
|
||||
if ( EXISTS ${CMAKE_SOURCE_DIR}/OEM.cmake )
|
||||
include ( ${CMAKE_SOURCE_DIR}/OEM.cmake )
|
||||
else ()
|
||||
include ( OWNCLOUD.cmake )
|
||||
include ( ${CMAKE_SOURCE_DIR}/OWNCLOUD.cmake )
|
||||
endif()
|
||||
|
||||
include(${CMAKE_SOURCE_DIR}/VERSION.cmake)
|
||||
|
|
Loading…
Reference in a new issue