{"id":18947209,"url":"https://github.com/qedsoftware/cmake-wizard","last_synced_at":"2025-09-15T09:26:14.553Z","repository":{"id":7662354,"uuid":"9023913","full_name":"qedsoftware/cmake-wizard","owner":"qedsoftware","description":"Simple command-line wizard to assist with creating CMake directory structure and CMakeLists.txt files.","archived":false,"fork":false,"pushed_at":"2013-10-21T17:45:34.000Z","size":124,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-24T22:39:14.060Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qedsoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-26T05:51:12.000Z","updated_at":"2024-11-08T17:07:54.000Z","dependencies_parsed_at":"2022-09-11T09:25:31.800Z","dependency_job_id":null,"html_url":"https://github.com/qedsoftware/cmake-wizard","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qedsoftware/cmake-wizard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qedsoftware%2Fcmake-wizard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qedsoftware%2Fcmake-wizard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qedsoftware%2Fcmake-wizard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qedsoftware%2Fcmake-wizard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qedsoftware","download_url":"https://codeload.github.com/qedsoftware/cmake-wizard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qedsoftware%2Fcmake-wizard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275234230,"owners_count":25428591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-15T02:00:09.272Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T13:09:16.316Z","updated_at":"2025-09-15T09:26:14.487Z","avatar_url":"https://github.com/qedsoftware.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"cmake-wizard\n===============\n\nDescription\n---------------\n\nThis is a simple python script that constructs an out-of-source CMake build directory structure and CMakeLists.txt files.\n\nWilliam Wu (william.wu@themathpath.com), 2012 December 31 \n\n\nDemo\n---------------\n\n$ python cmake-wizard.py \n\n\tEnter author name: W.Wu\n\tEnter project directory name: cmake-wizard-demo\n\tEnter name of main program (ex: main.c): main.cpp\n\tEnter name of executable (ex: demo): demo\n\tList standard third-party libraries, delimited by spaces (ex: m blas crypto): crypto\n\tList special third-party libraries to be found, delimited by spaces (ex: GSL LAPACK OPENCV): OPENCV\n\tList custom-written libraries in source directory: foo bar baz\n\tPrint file extensions ('c' or 'cpp'): cpp\n\n$ tree cmake-wizard-demo/\n\n\tcmake-wizard-demo/\n\t├── CMakeLists.txt\n\t├── README.txt\n\t├── build\n\t└── src\n\t    └── CMakeLists.txt\n\n\t2 directories, 3 files\n\n$ more cmake-wizard-demo/CMakeLists.txt \n\n\t# W.Wu, 2012-12-31 23:00\n\tcmake_minimum_required(VERSION 2.8)\n\tproject( cmake-wizard-demo )\n\tfind_package( OPENCV REQUIRED )\n\tadd_subdirectory( src )\n\n$ more cmake-wizard-demo/src/CMakeLists.txt \n\n\t# W.Wu, 2013-03-25 23:00\n\tinclude_directories (${cmake-wizard-demo_SOURCE_DIR}/src)\n\tlink_directories (${cmake-wizard-demo_BINARY_DIR}/src)\n\tset (LIBS foo bar baz)\n\tforeach (lib ${LIBS})\n\t        add_library (${lib} ${lib}.cpp)\n\tendforeach (lib)\n\tset (CORELIBS crypto ${OPENCV_LIBRARIES})\n\tadd_executable (demo main.cpp)\n\ttarget_link_libraries (demo ${CORELIBS} ${LIBS} )\n\t# for debugging --- print out all variable names:\n\t# get_cmake_property(_variableNames VARIABLES)\n\t# foreach (_variableName ${_variableNames})\n\t#    message(STATUS \"${_variableName}=${${_variableName}}\")\n\t# endforeach()\n\n\nRequirements\n---------------\nSystem requirements: python","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqedsoftware%2Fcmake-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqedsoftware%2Fcmake-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqedsoftware%2Fcmake-wizard/lists"}