This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
0
You've already forked CMake
Code
Issues
Pull Requests
Releases
Wiki
Activity
CMake
/
Tests
/
COnly
/
CMakeLists.txt
4 lines
89 B
CMake
Raw
Normal View
History
Unescape
Escape
ENH: add enable language support for PROJECT command, this means that a C only project can be built with cmake, even without a cxx compiler
2002-04-02 15:43:23 -05:00
# a simple C only test case
PROJECT
(
conly
C
)
If you specify header file as source, it should still use C compiler and not CXX. Also fix COnly test so that it make sure that this still works...
2002-10-06 12:12:59 -04:00
ADD_EXECUTABLE
(
conly
conly.c
foo.c
foo.h
)
Reference in New Issue
Copy Permalink