Skip to content

Commit 811a11f

Browse files
committed
adding missing file
1 parent e1b9cb4 commit 811a11f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

tests/install/CMakeLists.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
cmake_minimum_required(VERSION 3.15)
3+
4+
project(test_ewah_install VERSION 0.1.0 LANGUAGES CXX)
5+
6+
set(CMAKE_CXX_STANDARD 11)
7+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
8+
9+
find_package(ewah REQUIRED)
10+
11+
file(WRITE main.cpp "
12+
#include \"ewah/ewah.h\"
13+
#include <stdlib.h>
14+
#include <time.h>
15+
16+
using namespace ewah;
17+
18+
int main() {
19+
EWAHBoolArray<uint32_t> bitmap;
20+
return 0;
21+
}")
22+
23+
add_executable(reproc main.cpp)
24+
target_link_libraries(reproc PUBLIC ewah::ewah)

0 commit comments

Comments
 (0)