-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Cmakelist.txt #77
Conversation
cmake_minimum_required(VERSION 3.10) # Name of your project project(pmll_logic_loop_knowledge_block VERSION 0.1.0 DESCRIPTION "Example CMake project" LANGUAGES CXX) # Specify the C++ standard set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED True) # (Optional) Turn on extra compiler warnings in a cross-platform way if(MSVC) add_compile_options(/W4) else() add_compile_options(-Wall -Wextra -pedantic) endif() # If you have a src/ folder, you can list your source files there # For a minimal example, we’ll just assume main.cpp is in the same folder add_executable(pmll_logic_loop_knowledge_block main.cpp ) # Optionally link libraries or set include directories, for example: # target_include_directories(pmll_logic_loop_knowledge_block PRIVATE include/) # target_link_libraries(pmll_logic_loop_knowledge_block PRIVATE some_library) # If you want to enable testing, you can add: # enable_testing() # add_test(NAME MyTest COMMAND pmll_logic_loop_knowledge_block) Signed-off-by: J. K. Edwards <joed6834@colorado.edu>
Warning Rate limit exceeded@bearycool11 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 1 minutes and 57 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
cmake_minimum_required(VERSION 3.10)
Name of your project
project(pmll_logic_loop_knowledge_block
VERSION 0.1.0
DESCRIPTION "Example CMake project"
LANGUAGES CXX)
Specify the C++ standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
(Optional) Turn on extra compiler warnings in a cross-platform way if(MSVC)
else()
add_compile_options(-Wall -Wextra -pedantic)
endif()
If you have a src/ folder, you can list your source files there # For a minimal example, we’ll just assume main.cpp is in the same folder add_executable(pmll_logic_loop_knowledge_block
)
Optionally link libraries or set include directories, for example: # target_include_directories(pmll_logic_loop_knowledge_block PRIVATE include/) # target_link_libraries(pmll_logic_loop_knowledge_block PRIVATE some_library)
If you want to enable testing, you can add:
enable_testing()
add_test(NAME MyTest COMMAND pmll_logic_loop_knowledge_block)