Revision: 40468
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40468&view=rev
Author:   starseeker
Date:     2010-09-05 00:27:33 +0000 (Sun, 05 Sep 2010)

Log Message:
-----------
Add CMake logic for burst.  Not implementing the custom test routine as yet - 
that involves figuring out CTest and will come later.

Modified Paths:
--------------
    brlcad/branches/cmake/CMakeLists.txt

Added Paths:
-----------
    brlcad/branches/cmake/src/burst/CMakeLists.txt

Modified: brlcad/branches/cmake/CMakeLists.txt
===================================================================
--- brlcad/branches/cmake/CMakeLists.txt        2010-09-05 00:14:19 UTC (rev 
40467)
+++ brlcad/branches/cmake/CMakeLists.txt        2010-09-05 00:27:33 UTC (rev 
40468)
@@ -1110,6 +1110,7 @@
 ADD_SUBDIRECTORY(src/adrt)
 ADD_SUBDIRECTORY(src/anim)
 ADD_SUBDIRECTORY(src/brlman)
+ADD_SUBDIRECTORY(src/burst)
 
 # Now that everything is configured, print a summary of the build settings.  
This is a bit complicated, but
 # the basic idea is to print labels, "smart" spacers around those labels to 
line everything up, and the

Added: brlcad/branches/cmake/src/burst/CMakeLists.txt
===================================================================
--- brlcad/branches/cmake/src/burst/CMakeLists.txt                              
(rev 0)
+++ brlcad/branches/cmake/src/burst/CMakeLists.txt      2010-09-05 00:27:33 UTC 
(rev 40468)
@@ -0,0 +1,45 @@
+include_directories(
+  ${BRLCAD_BINARY_DIR}/include
+  ${BRLCAD_SOURCE_DIR}/include
+  ${BRLCAD_SOURCE_DIR}/src/burst
+  ${BRLCAD_TERMLIB_INCLUDE_DIR}
+  ${TCL_INCLUDE_PATH}
+)
+
+add_definitions(
+  -DHAVE_CONFIG_H
+  -DBRLCADBUILD
+)
+
+
+SET(burst_SOURCES
+  burst.c 
+  error.c 
+  fb.c 
+  glob.c 
+  grid.c 
+  gridrotate.c 
+  Hm.c 
+  HmGetc.c 
+  HmGlob.c 
+  idents.c 
+  paint.c 
+  plot.c 
+  prnt.c 
+  Sc.c 
+  trie.c 
+  ui.c
+)
+
+BRLCAD_ADDEXEC(burst "${burst_SOURCES}" "librt fb termio 
${BRLCAD_TERMLIB_LIBRARY}")
+
+
+SET(burst_noinst_HEADERS
+       ascii.h 
+       burst.h 
+       extern.h 
+       Hm.h 
+       Mm.h 
+       Sc.h 
+       trie.h
+)


Property changes on: brlcad/branches/cmake/src/burst/CMakeLists.txt
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to