up vote 2 down vote favorite
share [g+] share [fb]

The projects I work on are organised into root folders (VOBS) as follows:

|--BUILD_FOLDER
| |-- BUILD_SCRIPTS
| |-- SOME_MORE_CODE
|
|--COMPONENT_A
|--COMPONENT_B

Because they are ClearCase VOBS there is no higher level root folder to place a CMakeLists.txt This setup doesn't seem to fit the CMake pattern...

  • Is this a show-stopper to using CMake?
    • It seems that CMake requires everything to be hierarchical as it descends down from one point. .
  • Is CMake the right tool for non-windows/Linux targets?
    • The projects use custom c compilers and invoke 3rd party tools to generate application files in several formats.
link|improve this question

73% accept rate
I know nothing about Cmake, and I can't really say if this is a good question or not, but I see there is a downvote without a comment, so I'll upvote it. So there! – Thomas Padron-McCarthy Oct 20 '09 at 9:02
feedback

1 Answer

up vote 0 down vote accepted

Your components don't have to be subdirectories of the directory you have the CMakeLists.txt file in. Place it in the folder with same rank as of the components and just use relative paths in your ADD_SUBDIRECTORY command:

ADD_SUBDIRECTORY(../componentA)
ADD_SUBDIRECTORY(../componentB)

That's how i suggest you to arrange your folders

|--BUILD_FOLDER           <-- this directory is created by "make" (???)
| |-- BUILD_SCRIPTS
| |-- SOME_MORE_CODE
|
|--META_FOLDER  <--- place CMakeLists.txt here
|--COMPONENT_A
|--COMPONENT_B

Similar directory layout was used to build OpenJDK 6 (but instead of CMake, a usual make was used those days).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.