Hi,
I noticed an issue in main CMakeLists.txt, if IOS build is used :
if(IOS)
set(IOS_SOURCE_DIR "${CMAKE_SOURCE_DIR}/../Build_iOS")
should be :
if(IOS)
set(IOS_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../Build_iOS")
so that one can find correct path to Build_iOS folder, even if main CMakeLists.txt is included from another CMake project.
Kind Regards,
Julien
Comments: Got it. Thanks.
I noticed an issue in main CMakeLists.txt, if IOS build is used :
if(IOS)
set(IOS_SOURCE_DIR "${CMAKE_SOURCE_DIR}/../Build_iOS")
should be :
if(IOS)
set(IOS_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../Build_iOS")
so that one can find correct path to Build_iOS folder, even if main CMakeLists.txt is included from another CMake project.
Kind Regards,
Julien
Comments: Got it. Thanks.