Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion ggml/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ cmake_minimum_required(VERSION 3.14...3.28) # for add_link_options and implicit
if (POLICY CMP0194)
cmake_policy(SET CMP0194 NEW)
endif()
project("ggml" C CXX ASM)

include(CheckLanguage)

check_language(ASM)
if (CMAKE_ASM_COMPILER AND NOT MSVC)
enable_language(ASM)
endif()

project("ggml" C CXX)

### GGML Version
set(GGML_VERSION_MAJOR 0)
Expand Down