You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Hi, this is a general issue I saw while compiling the examples. In the CMakeLists.txt files in examples, there is a check to see if $ENV{MDF_PATH} already exists.
# The following lines of boilerplate have to be in your project's# CMakeLists in this exact order for cmake to work correctlycmake_minimum_required(VERSION3.5)
if(NOTDEFINED $ENV{MDF_PATH})
message(STATUS"foo include dir: $ENV{MDF_PATH}")
set(ENV{MDF_PATH} ${CMAKE_CURRENT_LIST_DIR}/../..)
endif()
include($ENV{MDF_PATH}/project.cmake)
project(get_started)
I think that if statement does not work as intended due to $ at the beginning.
Believe the correct Cmake syntax should be: