C/C++
cmake.txt
Associated article: The CMake Build Manager
Tags: C/C++
The CMake Build Manager
by William Hoffman and Ken Martin
Listing One
SET(HELLO_SRCS Hello.c File2.c File3.c)
IF (WIN32)
SET(HELLO_SRCS ${HELLO_SRCS} WinSupport.c)
ELSE (WIN32)
SET(HELLO_SRCS ${HELLO_SRCS} UnixSupport.c)
ENDIF (...


