From bcd282bc0954794fde1fd23c9533d40303297e23 Mon Sep 17 00:00:00 2001 From: Acedia / Melancholy <85808999+TheGreatSageEqualToHeaven@users.noreply.github.com> Date: Sun, 12 Feb 2023 23:05:41 +0630 Subject: [PATCH] Restore original settings --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46be7a25..4ce57618 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,13 +6,13 @@ endif() cmake_minimum_required(VERSION 3.0) -option(LUAU_BUILD_CLI "Build CLI" OFF) -option(LUAU_BUILD_TESTS "Build tests" OFF) +option(LUAU_BUILD_CLI "Build CLI" ON) +option(LUAU_BUILD_TESTS "Build tests" ON) option(LUAU_BUILD_WEB "Build Web module" OFF) option(LUAU_WERROR "Warnings as errors" OFF) option(LUAU_STATIC_CRT "Link with the static CRT (/MT)" OFF) -option(LUAU_EXTERN_C "Use extern C for all APIs" ON) -option(LUAU_EXPORT_DLL "Exports to DLL with C linkage" ON) +option(LUAU_EXTERN_C "Use extern C for all APIs" OFF) +option(LUAU_EXPORT_DLL "Exports to DLL with C linkage" OFF) option(LUAU_NATIVE "Enable support for native code generation" OFF) if(LUAU_STATIC_CRT)