Skip to content

Instantly share code, notes, and snippets.

@Neirpyc
Created March 24, 2017 19:19
Show Gist options
  • Save Neirpyc/67f519c7bbe9baac3873433a0178b1e3 to your computer and use it in GitHub Desktop.
Save Neirpyc/67f519c7bbe9baac3873433a0178b1e3 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/ProjetUn.iml" filepath="$PROJECT_DIR$/.idea/ProjetUn.iml" />
</modules>
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<module classpath="CMake" type="CPP_MODULE" version="4" />
cmake_minimum_required(VERSION 3.6)
project(ProjetUn)
set(CMAKE_C_STANDARD 11)
set(SOURCE_FILES main.c)
add_executable(ProjetUn ${SOURCE_FILES})
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment