Skip to content

KN-Neuron/Neuron-IDE-runtime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neuron-IDE-runtime

Setup and Build Instructions

This project uses CMake and requires a modern C++17 compiler.

1. Build the Project

To configure and compile the project, open your terminal in the root directory and run:

# Generate the build system in the "build" directory
cmake -B build

# Compile the project
cmake --build build

Once built, the main executable will be available inside the build directory.

2. Running Tests

This project uses Google Test (GTest) and CTest for testing. The tests are categorized by labels so you can run them selectively.

To run all tests:

cd build
ctest --output-on-failure

To run only unit tests:

cd build
ctest -L unit --output-on-failure

To run only component tests:

cd build
ctest -L component --output-on-failure

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors