Skip to content

Commit

Permalink
fix config and cmake lists for windows (at least my windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Lentz committed Apr 19, 2024
1 parent 3ecc82a commit b2b5e86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ FATAL: In-source builds are not allowed.
endif()

# CMake Variables
set(CMAKE_CXX_COMPILER g++)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/build/bin)

Expand Down Expand Up @@ -39,9 +38,6 @@ SET(INCLUDE_DIRECTORY ${PROJECT_SOURCE_DIR}/include)
# Dependencies

# For some reason I had to add this in two places to make it work on certain lab computers???
IF(MSVC)
ADD_DEFINITIONS("/EHsc")
ENDIF(MSVC)

add_subdirectory(dependencies/boost) # include boost libraries that we use
add_subdirectory(dependencies/json) # include boost libraries that we use
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"timestep_length_ms": 30
},
"network": {
"server_ip": "100.80.241.158",
"server_ip": "localhost",
"server_port": 2355
},
"server": {
Expand Down

0 comments on commit b2b5e86

Please sign in to comment.