mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:46:41 +08:00
6 lines
129 B
CMake
6 lines
129 B
CMake
|
project(lemon-parser-generator C)
|
||
|
add_executable(lemon lemon.c)
|
||
|
install(TARGETS lemon
|
||
|
RUNTIME DESTINATION tools/lemon
|
||
|
)
|