mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 22:21:16 +00:00
16 lines
326 B
CMake
16 lines
326 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
project(TokenModuleTests LANGUAGES CXX)
|
|
|
|
include(LogosTest)
|
|
|
|
logos_test(
|
|
NAME token_instruction_transport_tests
|
|
MODULE_SOURCES
|
|
../src/token_instruction_words.cpp
|
|
TEST_SOURCES
|
|
main.cpp
|
|
token_instruction_words_test.cpp
|
|
EXTRA_INCLUDES
|
|
../src
|
|
)
|