[cmake-developers] [CMake 0015529]: enhance if() to support list

Mantis Bug Tracker mantis at public.kitware.com
Wed Apr 22 09:15:02 EDT 2015


The following issue has been SUBMITTED. 
====================================================================== 
http://www.cmake.org/Bug/view.php?id=15529 
====================================================================== 
Reported By:                marc.chevrier
Assigned To:                
====================================================================== 
Project:                    CMake
Issue ID:                   15529
Category:                   CMake
Reproducibility:            N/A
Severity:                   feature
Priority:                   normal
Status:                     new
====================================================================== 
Date Submitted:             2015-04-22 09:15 EDT
Last Modified:              2015-04-22 09:15 EDT
====================================================================== 
Summary:                    enhance if() to support list
Description: 
Currently, to test if a list contains an element, the following pattern must be
used:
list (FIND my_list ${my_item} is_found)
if (NOT ${is_found} EQUAL -1)
   # item exists in list
endif ()

I suggest to extend if() syntax to support test of existence of an item in a
list:
if (<variable|string> IN <list>)

So, the previous test becomes:
if (my_item IN my_list)
  ...
endif ()
====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2015-04-22 09:15 marc.chevrier  New Issue                                    
======================================================================



More information about the cmake-developers mailing list