8 lines
111 B
CMake
8 lines
111 B
CMake
|
|
||
|
enable_language(CXX)
|
||
|
|
||
|
add_library(foo empty.cpp)
|
||
|
add_library(bar empty.cpp)
|
||
|
|
||
|
add_library(alias ALIAS foo bar)
|