Closed raphaelcohn closed 3 years ago
This is because all of the CMakeLists.txt files use the variables WIN32, APPLE, ANDROID (or in one place, ANDROID_NDK) and their NOT forms.
Simply replacing these with the CMAKE syntax if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") and the like fixes these.
if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
please submit the fix?
Probably not right now, but a forked copy to support a Rust wrapper I've tried to write is here:-
https://github.com/intel/IntelSEAPI/compare/master...raphaelcohn:musl
This is because all of the CMakeLists.txt files use the variables WIN32, APPLE, ANDROID (or in one place, ANDROID_NDK) and their NOT forms.
Simply replacing these with the CMAKE syntax
if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
and the like fixes these.