test using the kompute library and possibly vulkan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CPPFLAGS = -Wall -Wextra -g
|
|
# link kompute as a static library and the rest as dynamic
|
|
LDFLAGS = -L/usr/local/lib \
|
|
-Wl,-Bstatic -lkompute -lkp_logger \
|
|
-Wl,-Bdynamic -lvulkan -lfmt \
|
|
-Wl,--as-needed
|
|
|
|
test2: main.cpp
|
|
g++ ${CPPFLAGS} main.cpp -o test2 ${LDFLAGS}
|
|
|
|
clean:
|
|
rm -f test2
|
|
|