7 lines
83 B
CMake
7 lines
83 B
CMake
|
|
||
|
enable_language(CXX)
|
||
|
|
||
|
add_executable(foo empty.cpp)
|
||
|
|
||
|
add_library(alias ALIAS foo)
|