root/simulator/trunk/vendor/cmake/Modules/CMakeCodeBlocksFindMake.cmake

Revision 1018, 1.3 kB (checked in by sehenley, 1 year ago)

Vendor update to cmake-2.6.4

Line 
1 #    OSRail -- a network enabled railroad operations simulator and utilities
2 #    Copyright (C) 2007,2008 Samuel E. Henley sehenley@comcast.net
3 #
4 #    This program is free software; you can redistribute it and/or modify
5 #    it under the terms of the GNU General Public License as published by
6 #    the Free Software Foundation; either version 2 of the License, or
7 #    (at your option) any later version.
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License along
15 #    with this program; if not, write to the Free Software Foundation, Inc.,
16 #    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 #
18 #
19 #----------------------------------------------------------------------
20 ## \file
21 ## Used by CMake Global Generator to find CodeBlocks IDE
22 ## \page codeblockscmakelists Find CodeBlocks IDE
23 ## This is used by cmake to find the CodeBlocks IDE
24 ## \todo find the gcc tool set.
25
26
27 FIND_PROGRAM(CMAKE_MAKE_PROGRAM
28   NAMES codeblocks
29   PATHS
30   "/usr/local/bin"
31   "/usr/bin"
32   "c:/Program Files/CodeBlocks"
33   "/Program Files/CodeBlocks/"
34   )
Note: See TracBrowser for help on using the browser.