Anonymous - 2013-12-26

Originally posted by: prad...@vt.edu

Q: How to build just one variant of your choice? Answer: This is one way to do it. Please provide feedback if this is not the preferred way.

Step 1

In CMakeLists.txt find and modify the line (around line 23) that looks something like this:

file(GLOB tobuild FVSiec_sourceList.txt)

or

file(GLOB tobuild FVS*sourceList.txt)

modify the variant abbreviation -- iec or * in the examples above, respectively -- with the variant of your choice. For the Southern Variant (sn), here's what it looks like:

file(GLOB tobuild FVSsn_sourceList.txt)

Step 2

Save the modified CMakeLists.txt file.

Step 3

Follow the instructions above in section Building the Unix Makefile with Cmake starting with:

At the command line type

cmake -G"Unix Makefiles" .

Hope this helps. -Phil