2022-05-16 02:33:10 -04:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
project(KokaBench)
|
|
|
|
|
|
|
|
|
|
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
|
|
|
|
if (NOT isMultiConfig AND NOT DEFINED CMAKE_BUILD_TYPE)
|
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
|
|
|
|
|
add_subdirectory(kraken)
|
|
|
|
|
add_subdirectory(koka)
|
|
|
|
|
add_subdirectory(cpp)
|
2022-05-18 23:59:18 -04:00
|
|
|
add_subdirectory(haskell)
|
2022-05-19 00:43:27 -04:00
|
|
|
add_subdirectory(java)
|
|
|
|
|
add_subdirectory(ocaml)
|
|
|
|
|
add_subdirectory(swift)
|
2022-06-28 00:38:37 -04:00
|
|
|
|
|
|
|
|
add_subdirectory(python)
|
|
|
|
|
add_subdirectory(scheme)
|
2022-07-02 23:49:47 -04:00
|
|
|
add_subdirectory(picolisp)
|