blob: 501d67a2ab8e922b775913648e79b38cb403dca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
cmake_minimum_required(VERSION 2.8)
project(omegalib)
if(NOT DEFINED ROSEHOME)
message( FATAL_ERROR "ROSEHOME is not set, try use -DROSEHOME" )
endif()
if (NOT DEFINED BOOSTHOME)
message( FATAL_ERROR "BOOSTHOME is not set, try use -DBOOSTHOME" )
endif()
set(OMEGAROOT ${PROJECT_SOURCE_DIR})
add_subdirectory(omega)
add_subdirectory(codegen)
|