diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-27 16:44:11 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-27 16:44:11 (GMT) |
commit | cf8c6a30e3fea3047cab29f2a6a37db1b82b0122 (patch) | |
tree | 67c0204808f346d4b30cc4a20d91c8d307f49aee /Example/Hello | |
parent | b43aaed3bf29f40a91687be8a7da8db131f692e3 (diff) | |
download | CMake-cf8c6a30e3fea3047cab29f2a6a37db1b82b0122.zip CMake-cf8c6a30e3fea3047cab29f2a6a37db1b82b0122.tar.gz CMake-cf8c6a30e3fea3047cab29f2a6a37db1b82b0122.tar.bz2 |
ENH: updte to lower case and using ADD_SUBDIRECTORY
Diffstat (limited to 'Example/Hello')
-rw-r--r-- | Example/Hello/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Example/Hello/CMakeLists.txt b/Example/Hello/CMakeLists.txt index c424da6..879f4e5 100644 --- a/Example/Hello/CMakeLists.txt +++ b/Example/Hello/CMakeLists.txt @@ -1,3 +1,3 @@ # Create a library called "Hello" which includes the source file "hello.cxx". # The extension is already found. Any number of sources could be listed here. -ADD_LIBRARY(Hello hello.cxx) +add_library (Hello hello.cxx) |