CMakeLists.txt 760 Bytes
# The name of our project is "ANUBIS". CMakeLists files in this project can
# refer to the root source directory of the project as ${ANUBIS_SOURCE_DIR} and
# to the root binary directory of the project as ${ANUBIS_BINARY_DIR}.
cmake_minimum_required (VERSION 2.6)
project (ANUBIS)

#set (CMAKE_USE_RELATIVE_PATHS ON)


set( ANUBIS_DEV ${CMAKE_CURRENT_SOURCE_DIR}/anubis_dev )
set( THIRD_DEV  ${CMAKE_CURRENT_SOURCE_DIR}/third_dev )

# Recurse into the "Hello" and "Demo" subdirectories. This does not actually
# cause another cmake executable to run. The same process will walk through
# the project's entire directory structure.
#add_subdirectory (compiler)
add_subdirectory (anubis_dev) 
add_subdirectory (third_dev)

# install(TARGETS anubis anbexec cipher)