I'm moving a project to C::B (currently, it builds using a command-line utility called scons). One of the modules has the extension ".s" and it seems to be standard x86 assembly language (lots of
push /
pop /
mov instructions etc). When I add this file to my C::B project it gets grayed out. In other words, C::B doesn't seem to know how to build it. Scons handles it like this:-
g++ -c libs/sse/sse_functions.s -o libs/sse/sse_functions.oSo obviously, g++ knows how to build the module. Would C::B know what to do if I changed the extension to something else?
[Edit...] BTW, I tried the extension ".asm" but that wasn't recognised either....
