diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-25 14:43:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-25 14:43:11 -0600 |
commit | 4988ec1a102e4e80aa4675c9157a80725c3c2dba (patch) | |
tree | c92ca0102dee219ef801d530e46c5234fbd26e20 /skin | |
parent | 44bff95885fd2ad8d17e4b4f95f53e181b774028 (diff) | |
download | kbfx-4988ec1a102e4e80aa4675c9157a80725c3c2dba.tar.gz kbfx-4988ec1a102e4e80aa4675c9157a80725c3c2dba.zip |
Initial attempt at using the standard CMake system
Diffstat (limited to 'skin')
-rw-r--r-- | skin/CMakeLists.txt | 13 | ||||
-rw-r--r-- | skin/raster/CMakeLists.txt | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/skin/CMakeLists.txt b/skin/CMakeLists.txt new file mode 100644 index 0000000..9eeaf67 --- /dev/null +++ b/skin/CMakeLists.txt @@ -0,0 +1,13 @@ +################################################# +# +# (C) 2011 Timothy Pearson +# kb9vqf (AT) pearsoncomputing.net +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( raster ) +add_subdirectory( vector )
\ No newline at end of file diff --git a/skin/raster/CMakeLists.txt b/skin/raster/CMakeLists.txt new file mode 100644 index 0000000..62f59c8 --- /dev/null +++ b/skin/raster/CMakeLists.txt @@ -0,0 +1,13 @@ +################################################# +# +# (C) 2011 Timothy Pearson +# kb9vqf (AT) pearsoncomputing.net +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( 2panels ) +add_subdirectory( default )
\ No newline at end of file |