Browse Source

Remove bin and dist directories from repo

master
C. J. Howard 3 years ago
parent
commit
3415f08049
6 changed files with 8 additions and 6 deletions
  1. +3
    -0
      .gitignore
  2. +4
    -0
      CMakeLists.txt
  3. +1
    -1
      README.md
  4. +0
    -2
      bin/.gitignore
  5. +0
    -2
      dist/.gitignore
  6. +0
    -1
      modules/.gitignore

+ 3
- 0
.gitignore View File

@ -0,0 +1,3 @@
bin
dist
modules/vmq

+ 4
- 0
CMakeLists.txt View File

@ -24,6 +24,10 @@ set(PACKAGE_FILENAME ${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_PLATFORM})
set(PACKAGE_INSTALL_DIR ${CMAKE_SOURCE_DIR}/bin/${PACKAGE_BUILD_TYPE}/${PACKAGE_FILENAME})
set(PACKAGE_DIST_DIR ${CMAKE_SOURCE_DIR}/dist/${PACKAGE_BUILD_TYPE})
# Create output directories
file(MAKE_DIRECTORY ${PACKAGE_INSTALL_DIR})
file(MAKE_DIRECTORY ${PACKAGE_DIST_DIR})
# Check for architecture mismatches
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
if (PACKAGE_PLATFORM MATCHES "64$")

+ 1
- 1
README.md View File

@ -27,7 +27,7 @@ The following arguments may be passed to CMake during configuration:
### GNU/Linux
Building for GNU/Linux requires CMake, GCC, G++, and GNU Make. Open a terminal in either the `build/linux32` or `build/linux64` directory and run the following commands:
Building for GNU/Linux requires CMake, GCC, G++, and GNU Make. Navigate to either the `build/linux32` or `build/linux64` directory and run the following commands:
cmake ../.. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=...
cmake --build .

+ 0
- 2
bin/.gitignore View File

@ -1,2 +0,0 @@
*
!.gitignore

+ 0
- 2
dist/.gitignore View File

@ -1,2 +0,0 @@
*
!.gitignore

+ 0
- 1
modules/.gitignore View File

@ -1 +0,0 @@
vmq

Loading…
Cancel
Save