Skip to content

Commit

Permalink
Rename from di_listener to dill
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMagic committed Mar 31, 2019
1 parent 8b38943 commit 8ba0142
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required( VERSION 3.4 )
project( DInput )
project( DILL )

set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin )
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib )
Expand All @@ -10,11 +10,11 @@ include_directories(
${CMAKE_SOURCE_DIR}/src
)

add_library( di_listener SHARED src/di_listener.cpp )
target_link_libraries( di_listener dinput8 dxguid )
add_library( dill SHARED src/dill.cpp )
target_link_libraries( dill dinput8 dxguid )

add_executable( example src/example.cpp )
target_link_libraries( example di_listener )
target_link_libraries( example dill )

add_executable( example2 src/example2.cpp )
target_link_libraries( example2 di_listener )
target_link_libraries( example2 dill )
2 changes: 1 addition & 1 deletion src/di_listener.cpp → src/dill.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "di_listener.h"
#include "dill.h"

#include <iostream>
#include <memory>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/example.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "di_listener.h"
#include "dill.h"
#include "spdlog/fmt/fmt.h"

#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion src/example2.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "di_listener.h"
#include "dill.h"
#include "spdlog/fmt/fmt.h"

#include <iostream>
Expand Down

0 comments on commit 8ba0142

Please sign in to comment.