mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 17:26:55 +08:00
16 lines
283 B
CMake
16 lines
283 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
|
|
enable_testing()
|
|
|
|
project(jaytea)
|
|
|
|
SET (CMAKE_BUILD_TYPE gdb)
|
|
SET (CMAKE_C_FLAGS_GDB " -Wall -ggdb")
|
|
SET (CMAKE_CXX_FLAGS_GDB " -Wall -ggdb")
|
|
|
|
include_directories(dispatchkit)
|
|
|
|
add_subdirectory(dispatchkit bin)
|
|
add_subdirectory(chaiscript bin)
|
|
|