我正在尝试emscripten
在Makefile
. 我正在cmake
调用CMakeLists.txt
. 所以逻辑看起来像这样
ifeq(EXECUTOR, Emscripten)
emcmake cmake cmake/CMakeLists.txt
else
cmake cmake/CMakeLists.txt
endif
在CMakeLists.txt
我有
if(${CMAKE_SYSTEM_NAME} STREQUAL "Emscripten)
// Do some logic
endif()
因此,检测到这一点至关重要我该ifeq(EXECUTOR, Emscripten)
怎么做?