Skip to content

Instantly share code, notes, and snippets.

@moutasdimitris
Created May 2, 2019 16:56
Show Gist options
  • Save moutasdimitris/7459e1e5ceffabf9075cb258e224c305 to your computer and use it in GitHub Desktop.
Save moutasdimitris/7459e1e5ceffabf9075cb258e224c305 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<module classpath="CMake" type="CPP_MODULE" version="4" />
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/data-structure.iml" filepath="$PROJECT_DIR$/.idea/data-structure.iml" />
</modules>
</component>
</project>
cmake_minimum_required(VERSION 3.14)
project(data_structure)
set(CMAKE_CXX_STANDARD 14)
add_executable(data_structure main.cpp)
#include <iostream>
using namespace std;
int main() {
cout<<"h"<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment