Skip to content
Snippets Groups Projects
Commit 34d1a3ba authored by erayosso's avatar erayosso
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
# Project exclude paths
/cmake-build-debug/
\ No newline at end of file
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
<?xml version="1.0" encoding="UTF-8"?>
<module type="CPP_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/magicCards.iml" filepath="$PROJECT_DIR$/.idea/magicCards.iml" />
</modules>
</component>
</project>
\ No newline at end of file
cmake_minimum_required(VERSION 3.24)
project(magicCards)
set(CMAKE_CXX_STANDARD 20)
add_executable(magicCards main.cpp)
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment