Stefan Weber wrote:
set(${CMAKE_ASM_SOURCE_FILE_EXTENSIONS} "s;S")

but this does not help. To debug this, I do the following on the next line

message("${CMAKE_ASM_SOURCE_FILE_EXTENSIONS}")

Strangly, this does not print anything, just an empty line. Why is that?

Well, you didn't set CMAKE_ASM_SOURCE_FILE_EXTENSIONS to "s;S". You set whatever variable name you get from expanding that to "s;S", which may or may not work, but is regardless almost certainly not what you want.

I think you meant:
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS "s;S")

--
Matthew
Please do not quote my e-mail address unobfuscated in message bodies.
--
"Who wants to sing?" -- Orcs (Warcraft II)

_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to