8 lines
174 B
CMake
8 lines
174 B
CMake
file(GLOB sources
|
|
*.c *.h
|
|
backend/c-mpc/*.c backend/c-mpc/*.h)
|
|
|
|
add_executable(xpcg ${sources})
|
|
|
|
target_link_libraries(xpcg FX::Runtime FX::Collections FX::Cmdline FX::Io)
|