Skip to content

Commit 182ad85

Browse files
committed
modified: .gitignore
modified: helloworld/CMakeLists.txt
1 parent 43262a3 commit 182ad85

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
desktop.ini
22
*.out
3-
*.exe
3+
*.exe
4+
CMakeCache.txt
5+
CMakeFiles/
6+
Makefile
7+
cmake_install.cmake

helloworld/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ project(helloworld)
33
#include_directories(include)
44
AUX_SOURCE_DIRECTORY(src DIR_SRCS)
55
set(SRCS ${DIR_SRCS})
6-
message(${DIR_SRCS})
6+
#message(${DIR_SRCS})
77
add_executable(helloworld ${SRCS})
88

0 commit comments

Comments
 (0)