diff --git a/AK/CMakeLists.txt b/AK/CMakeLists.txt index 85c20316a32..b3c0ea737a3 100644 --- a/AK/CMakeLists.txt +++ b/AK/CMakeLists.txt @@ -59,3 +59,10 @@ endif() find_package(simdutf REQUIRED) target_link_libraries(AK PRIVATE simdutf::simdutf) + +generate_clang_module_map( + AK + GENERATED_FILES + "${CMAKE_CURRENT_BINARY_DIR}/Backtrace.h" + "${CMAKE_CURRENT_BINARY_DIR}/Debug.h" +) diff --git a/AK/module.modulemap b/AK/module.modulemap deleted file mode 100644 index 01a47bb0fdc..00000000000 --- a/AK/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -module AK [system] { - requires cplusplus - umbrella "." - - config_macros USING_AK_GLOBALLY -}