mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
12 lines
208 B
CMake
12 lines
208 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(CMakeRust)
|
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
|
|
|
|
enable_language(Rust)
|
|
include(CMakeCargo)
|
|
|
|
add_subdirectory(hello_world)
|
|
add_subdirectory(crates)
|
|
|