Skip to content

Commit 7ff3142

Browse files
Update Instructions
1 parent 3e1b009 commit 7ff3142

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: CMakeLists.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,13 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
7171
list(APPEND CMAKE_EXE_LINKER_FLAGS "-lX11 -lXxf86vm -lXrandr -lXi")
7272
endif()
7373

74+
if (WIN32)
75+
list(APPEND CORELIBS legacy_stdio_definitions.lib)
76+
endif()
77+
7478
# CUDA linker options
7579
find_package(Threads REQUIRED)
76-
find_package(CUDA REQUIRED)
80+
find_package(CUDA 8.0 REQUIRED)
7781
set(CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE ON)
7882
set(CUDA_SEPARABLE_COMPILATION ON)
7983

Diff for: INSTRUCTION.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Instructions - CUDA-RASTERIZER
22
========================
33

4-
This is due ~~**Tuesday, October 25, evening at midnight**.~~ **Friday, October 28, evening at midnight**
4+
This is due **Sunday, October 15, evening at midnight**.
55

66
**Summary:**
77
In this project, you will use CUDA to implement a simplified
@@ -380,7 +380,6 @@ The title should be "Project 4: YOUR NAME".
380380
The template of the comment section of your pull request is attached below, you can do some copy and paste:
381381
382382
* [Repo Link](https://link-to-your-repo)
383-
* `Your PENNKEY`
384383
* (Briefly) Mentions features that you've completed. Especially those bells and whistles you want to highlight
385384
* Feature 0
386385
* Feature 1

Diff for: src/main.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
int main(int argc, char **argv) {
2222
if (argc != 2) {
23-
cout << "Usage: [gltf file]" << endl;
23+
cout << "Usage: [gltf file]. Press Enter to exit" << endl;
24+
getchar();
2425
return 0;
2526
}
2627

0 commit comments

Comments
 (0)