blob: 6861bd59f6309866553e87ab6d92f40b60ed3720 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
add_executable(rescompiler)
target_link_libraries(rescompiler PUBLIC
contrib-libs-cxxsupp
yutil
library-cpp-cpuid_check
library-cpp-resource
)
target_sources(rescompiler PRIVATE
${CMAKE_SOURCE_DIR}/tools/rescompiler/main.cpp
)
target_link_flags(rescompiler
PUBLIC
-lpthread
-lrt
-ldl
)
vcs_info(rescompiler)
|