File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed
Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -74,8 +74,6 @@ if(WIN32)
7474 "${CMAKE_CURRENT_BINARY_DIR} /external/SFML/lib/sfml-system-2.dll"
7575 "${CMAKE_CURRENT_BINARY_DIR} /external/SFML/lib/sfml-window-2.dll"
7676 ${CMAKE_CURRENT_BINARY_DIR} )
77- configure_file ("${CMAKE_CURRENT_SOURCE_DIR} /win32/OpenAL32.dll"
78- DESTINATION ${CMAKE_CURRENT_BINARY_DIR} COPYONLY )
7977endif ()
8078
8179#copy fonts
@@ -100,11 +98,6 @@ if(WIN32)
10098 "${CMAKE_CURRENT_BINARY_DIR} /external/SFML/lib/sfml-system-2.dll"
10199 "${CMAKE_CURRENT_BINARY_DIR} /external/SFML/lib/sfml-window-2.dll"
102100 ${CMAKE_CURRENT_BINARY_DIR} )
103- #openal ig
104- add_custom_command (TARGET ${PR_NAME} POST_BUILD
105- COMMAND ${CMAKE_COMMAND} -E copy
106- "${CMAKE_CURRENT_SOURCE_DIR} /win32/OpenAL32.dll"
107- ${CMAKE_INSTALL_BINDIR} )
108101elseif (UNIX )
109102 install (TARGETS ${PR_NAME}
110103 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class BinaryTree {
1414 void splitVectorToNodes (int midpoint);
1515 void updateNodesBase ();
1616
17- Node* path[2 ] = { NULL , NULL };
17+ Node* path[2 ] = { nullptr , nullptr };
1818 int color = -1 ;
1919 std::vector<int > dataVector;
2020};
You can’t perform that action at this time.
0 commit comments