spiegel-keyman/core/tests/unit/emscripten_filesystem.h
Marc Durdin 7a833c8c91 feat(core): use kmc to build kmx tests
Removes the Windows-only kmcomp.exe dependency, and instead now uses
kmc to always build .kmx files for unit tests.

debug_api.cpp was using an outdated .kmx file, which is why the line
number offsets have changed. (The perils of binary fixtures!)
2023-03-24 06:22:40 +07:00

8 lines
No EOL
131 B
C++

#pragma once
#ifdef __EMSCRIPTEN__
#include <iostream>
const std::string get_wasm_file_path(const std::string& filename);
#endif