Remove the transient support for Kite3 & Katabatic3.
This commit is contained in:
parent
789c047e69
commit
9965b34e9b
|
@ -24,12 +24,11 @@ projects = [ { 'name' : 'bootstrap'
|
|||
, "mauka"
|
||||
, "knik"
|
||||
, "katabatic"
|
||||
#, "katabatic3"
|
||||
, "kite"
|
||||
, "equinox"
|
||||
, "solstice"
|
||||
, "unicorn"
|
||||
, "testbench"
|
||||
#, "testbench"
|
||||
#, "ispd"
|
||||
, "cumulus"
|
||||
, "stratus1"
|
||||
|
|
|
@ -71,10 +71,10 @@
|
|||
#
|
||||
# Adds -Wall to the C/C++ flags.
|
||||
#
|
||||
set(CMAKE_C_FLAGS_DEBUG "-g -Wall" CACHE STRING "Debug options." FORCE)
|
||||
set(CMAKE_CXX_FLAGS_DEBUG "-g -Wall" CACHE STRING "Debug options." FORCE)
|
||||
set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG -Wall" CACHE STRING "Release options." FORCE)
|
||||
set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG -Wall" CACHE STRING "Release options." FORCE)
|
||||
set(CMAKE_C_FLAGS_DEBUG "-Wall -g" CACHE STRING "C Compiler Debug options." FORCE)
|
||||
set(CMAKE_C_FLAGS_RELEASE "-Wall -O2 -DNDEBUG" CACHE STRING "C Compiler Release options." FORCE)
|
||||
set(CMAKE_CXX_FLAGS_DEBUG "-std=c++0x -Wall -g" CACHE STRING "C++ Compiler Debug options." FORCE)
|
||||
set(CMAKE_CXX_FLAGS_RELEASE "-std=c++0x -Wall -O2 -DNDEBUG" CACHE STRING "C++ Compiler Release options." FORCE)
|
||||
|
||||
|
||||
#
|
||||
|
|
|
@ -105,6 +105,7 @@ if __name__ == "__main__":
|
|||
parser.add_option ( "--devel" , action="store_true" , dest="devel" )
|
||||
parser.add_option ( "--static" , action="store_true" , dest="static" )
|
||||
parser.add_option ( "--shared" , action="store_true" , dest="shared" )
|
||||
parser.add_option ( "--chams" , action="store_true" , dest="chams" )
|
||||
parser.add_option ( "--no-python", action="store_true" , dest="nopython" )
|
||||
parser.add_option ( "--root" , action="store" , type="string", dest="rootDir" )
|
||||
( options, args ) = parser.parse_args ()
|
||||
|
|
Loading…
Reference in New Issue