init IDEA project

This commit is contained in:
2018-05-18 16:27:11 +08:00
parent c1f0084c29
commit ec64994be9
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored
View File

@@ -28,3 +28,6 @@
*.out
*.app
# IDEA
.idea/*
cmake-build-debug/*

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(HuffmanCode)
set(CMAKE_CXX_STANDARD 11)
add_executable(HuffmanCode main.cpp)

6
main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}