diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-08-10 12:42:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 12:42:08 -0700 |
commit | e80fc8098e31833894ddd243d6c29d4a6c9d6565 (patch) | |
tree | 238832539c12b686cd5a75955321005d1a226084 /src/asmjs | |
parent | e7d9111ad020d64e6094ebfb6c325d86ffbbdb5c (diff) | |
download | binaryen-e80fc8098e31833894ddd243d6c29d4a6c9d6565.tar.gz binaryen-e80fc8098e31833894ddd243d6c29d4a6c9d6565.tar.bz2 binaryen-e80fc8098e31833894ddd243d6c29d4a6c9d6565.zip |
Added headers to CMake files (#3037)
This is needed for headers to show up in IDE projects, and has no other effect on the build.
Diffstat (limited to 'src/asmjs')
-rw-r--r-- | src/asmjs/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/asmjs/CMakeLists.txt b/src/asmjs/CMakeLists.txt index 8543dbd77..d677f1bfe 100644 --- a/src/asmjs/CMakeLists.txt +++ b/src/asmjs/CMakeLists.txt @@ -1,6 +1,8 @@ +FILE(GLOB asmjs_HEADERS *.h) set(asmjs_SOURCES asm_v_wasm.cpp asmangle.cpp shared-constants.cpp + ${asmjs_HEADERS} ) add_library(asmjs OBJECT ${asmjs_SOURCES}) |