blob: 3d11e42858e6f57f75eda0aaea46398c9835ea1e (
plain)
1
2
3
4
5
6
7
8
9
10
|
add_library(CruPlatformBaseWeb
Js.cpp
Resource.cpp
)
find_library(EMBIND_LIB embind REQUIRED)
target_link_libraries(CruPlatformBaseWeb PUBLIC CruPlatformBase)
target_link_libraries(CruPlatformBaseWeb PUBLIC EMBIND_LIB)
|