cmake missing separator error
Posted
by user198729
on Stack Overflow
See other posts from Stack Overflow
or by user198729
Published on 2010-04-26T04:05:26Z
Indexed on
2010/04/26
4:13 UTC
Read the original article
Hit count: 445
D:\Works\c\cmake\build>cmake ..
-- The C compiler identification is MSVC
-- The CXX compiler identification is MSVC
-- Check for CL compiler version
-- Check for CL compiler version - 1500
-- Check if this is a free VC compiler
-- Check if this is a free VC compiler - no
-- Check for working C compiler: D:/Tools/Microsoft Visual Studio 9.0/VC/bin/cl.exe
-- Check for working C compiler: D:/Tools/Microsoft Visual Studio 9.0/VC/bin/cl.exe -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: D:/Tools/Microsoft Visual Studio 9.0/VC/bin/cl.exe
-- Check for working CXX compiler: D:/Tools/Microsoft Visual Studio 9.0/VC/bin/cl.exe -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: D:/Works/c/cmake/build
D:\Works\c\cmake\build>make
Makefile:28: *** missing separator. Stop.
I saw many similar problems,but not with cmake
,and their solution is to use tabs instead of spaces,but the makefile
is generated by cmake
,has anyone else met this problem?
© Stack Overflow or respective owner