-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 1.0.0 (2016-11-28) | ||
|
||
* first release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
CMakeBBLM | ||
========= | ||
|
||
CMakeBBLM is a script that generates a [BBEdit codeless language module][clm] for [CMake][cmake]. | ||
|
||
Features | ||
-------- | ||
|
||
* Dynamically generates a BBEdit codeless language module for the actual CMake version installed. | ||
* Supports text completion for CMake built-in commands, properties and variables. | ||
* Supports BBEdit function pop-ups for user-defined CMake functions and macros. | ||
|
||
Requirements | ||
------------ | ||
|
||
* BBEdit 10 or newer. | ||
* CMake 2.8.12 or newer. | ||
|
||
Installation | ||
------------ | ||
|
||
Execute the shell script `install.sh` with Terminal.app to generate and install the BBEdit language | ||
module: | ||
|
||
$ ./install.sh | ||
cmake.plist -> /Users/sakra/Dropbox/Application Support/BBEdit/Language Modules/cmake.plist | ||
CMake BBEdit language module installed. Please restart BBEdit. | ||
|
||
The generated module is tailored to the version of CMake installed on the system, i.e., it will | ||
only support keywords and predefined names valid for that version. | ||
|
||
The install script copies the generated language module to BBEdit's application support folder in | ||
the Dropbox data folder or in the user's Library folder. | ||
|
||
Usage | ||
----- | ||
|
||
Restart BBEdit after installation. The language `CMake` is then available in an editor window's | ||
language popup menu. The `CMakeBBLM` module is automatically used for files named `CMakeLists.txt` | ||
and for files with the extensions `.cmake` or `.ctest`. | ||
|
||
[clm]:http://www.barebones.com/support/develop/clm.html | ||
[cmake]:https://cmake.org/ |