We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4540b3c commit 71ba246Copy full SHA for 71ba246
CMakeLists.txt
@@ -1,14 +1,14 @@
1
cmake_minimum_required(VERSION 3.12)
2
3
+# Can skip compiler checks since we're not building anything.
4
+set(CMAKE_C_COMPILER_WORKS 1)
5
+set(CMAKE_CXX_COMPILER_WORKS 1)
6
+
7
option(BUILD_UI "Build the OpenLeetCode UI" OFF)
8
9
set(PROBLEM_BUILDS_NAME "problem_builds")
10
set(CMAKE_FILE_DESTINATION_SUFIX "_destination")
11
-if(NOT CMAKE_BUILD_TYPE)
- set(CMAKE_BUILD_TYPE Debug)
-endif()
-
12
project(openleetcode
13
DESCRIPTION "Open Source version of LeetCode"
14
)
0 commit comments