Skip to content

Commit

Permalink
found the proper file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bbercovici committed Apr 18, 2018
1 parent 5066d11 commit 1cbf587
Show file tree
Hide file tree
Showing 16 changed files with 13 additions and 136 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ add_library(${LIB_NAME}
# If ${BREW} is true, installing from homebrew formula
if(NOT BREW)
install (TARGETS ${LIB_NAME} DESTINATION /usr/local/lib/)
install (DIRECTORY ${PROJECT_SOURCE_DIR}/${LIB_NAME} DESTINATION /usr/local/share)
install (DIRECTORY ${PROJECT_SOURCE_DIR}/include/ DESTINATION /usr/local/include/YORPLib FILES_MATCHING PATTERN "*.h")
install (DIRECTORY ${PROJECT_SOURCE_DIR}/share/${LIB_NAME} DESTINATION /usr/local/share)
install (DIRECTORY ${PROJECT_SOURCE_DIR}/include/YORPLib DESTINATION /usr/local/include/YORPLib FILES_MATCHING PATTERN "*.h")
endif()


Expand Down
127 changes: 0 additions & 127 deletions YORPLib/CMakeLists.txt

This file was deleted.

4 changes: 4 additions & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*
*/
!.gitignore

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion YORPLib/source/Body.cpp → source/Body.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE.
// Copyright (c) 2014 Jay McMahon. All rights reserved.
//

#include "Body.h"
#include "YORPLib/Body.h"
#include <algorithm>
#include <vector>
#include <cmath>
Expand Down
4 changes: 2 additions & 2 deletions YORPLib/source/FCoeffs.cpp → source/FCoeffs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ SOFTWARE.
// Copyright (c) 2014 Jay McMahon. All rights reserved.
//

#include "FCoeffs.h"
#include "Body.h"
#include "YORPLib/FCoeffs.h"
#include "YORPLib/Body.h"
#include <math.h>
#include <algorithm>

Expand Down
2 changes: 1 addition & 1 deletion YORPLib/source/Facet.cpp → source/Facet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SOFTWARE.
// Copyright (c) 2014 Jay McMahon. All rights reserved.
//

#include "Facet.h"
#include "YORPLib/Facet.h"
#include <math.h>
#include <iostream>

Expand Down
2 changes: 1 addition & 1 deletion YORPLib/source/SRPModel.cpp → source/SRPModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE.
// Copyright (c) 2014 Jay McMahon. All rights reserved.
//

#include "SRPModel.h"
#include "YORPLib/SRPModel.h"
#include <math.h>
namespace YORPLib{

Expand Down
2 changes: 1 addition & 1 deletion YORPLib/source/Shadow.cpp → source/Shadow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE.
// Copyright (c) 2014 Jay McMahon. All rights reserved.
//

#include "Shadow.h"
#include "YORPLib/Shadow.h"
#include <math.h>
namespace YORPLib{

Expand Down
2 changes: 1 addition & 1 deletion YORPLib/source/VoxelGrid.cpp → source/VoxelGrid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE.
// Copyright (c) 2014 Jay McMahon. All rights reserved.
//

#include "VoxelGrid.h"
#include "YORPLib/VoxelGrid.h"
#include <vector>
#include <algorithm>
#include <cmath>
Expand Down

0 comments on commit 1cbf587

Please sign in to comment.