Skip to content

Commit 75cfec3

Browse files
committed
fix: 프로젝트 설정 관리 추가
1 parent 824bbcb commit 75cfec3

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

Solved.ac.run.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Solved.ac" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" EMULATE_TERMINAL="false" PASS_PARENT_ENVS_2="true" RUN_PATH="$PROJECT_DIR$/build/src/solved-ac" EXPLICIT_BUILD_TARGET_NAME="all">
3+
<method v="2">
4+
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
5+
</method>
6+
</configuration>
7+
</component>

src/problems/problem_1977.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include "problem_1977.h"
2+
#include <iostream>
3+
4+
void solve_problem_1977(){
5+
}

src/problems/problem_1977.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#ifndef PROBLEM_1977_H
2+
#define PROBLEM_1977_H
3+
4+
void solve_problem_1977();
5+
6+
#endif

0 commit comments

Comments
 (0)